 fbdc89d307
			
		
	
	fbdc89d307
	
	
	
		
			
			This change uses node modules to build polygerrit-ui release artifact. Tests still use bower_components. Change-Id: I3457931b0ff8edcb41250d1aa3518b8ea18a964e
		
			
				
	
	
		
			41 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/sh
 | |
| 
 | |
| # DEPRECATED: This file is only used by Gerrit CI for now
 | |
| # To run eslint test on FE code, run `npm run eslint` instead.
 | |
| # `bazel run lint_test` will be changed to be an alias to
 | |
| # `npm run eslint` soon.
 | |
| 
 | |
| set -ex
 | |
| 
 | |
| echo "DEPRECATED: please run `npm run eslint` instead.";
 | |
| 
 | |
| npm_bin=$(which npm) && true
 | |
| if [ -z "$npm_bin" ]; then
 | |
|     echo "NPM must be on the path."
 | |
|     exit 1
 | |
| fi
 | |
| 
 | |
| eslint_bin=$(which eslint) && true
 | |
| eslint_config=$(npm list -g | grep -c eslint-config-google) && true
 | |
| eslint_plugin=$(npm list -g | grep -c eslint-plugin-html) && true
 | |
| if [ -z "$eslint_bin" ] || [ "$eslint_config" -eq "0" ] || [ "$eslint_plugin" -eq "0" ]; then
 | |
|     echo "You must install ESLint and its dependencies from NPM."
 | |
|     echo "> npm install -g eslint eslint-config-google eslint-plugin-html"
 | |
|     echo "For more information, view the README:"
 | |
|     echo "https://gerrit.googlesource.com/gerrit/+/master/polygerrit-ui/#Style-guide"
 | |
|     exit 1
 | |
| fi
 | |
| 
 | |
| # get absolute path to lint_test.sh path
 | |
| SCRIPT=$(readlink -f "$0")
 | |
| UI_PATH=$(dirname "$SCRIPT")
 | |
| 
 | |
| # To make sure npm link happens in the right place
 | |
| cd ${UI_PATH}
 | |
| 
 | |
| # Linking global eslint packages to the local project. Required to use eslint plugins with a global
 | |
| # eslint installation.
 | |
| npm link eslint eslint-config-google eslint-plugin-html eslint-plugin-jsdoc
 | |
| 
 | |
| ${eslint_bin} -c ${UI_PATH}/.eslintrc.json --ignore-pattern 'rollup.config.js' --ignore-pattern 'elements/font-roboto-local-loader.js' --ignore-pattern 'node_modules/' --ignore-pattern 'bower_components/' --ignore-pattern 'scripts/vendor' --ext .html,.js ${UI_PATH}
 |