Add Makefile command to run jshint
This commit is contained in:
parent
d1372ae85d
commit
b5671a2dc0
7
Makefile
7
Makefile
|
|
@ -9,7 +9,10 @@ static: clean
|
||||||
@ npm install
|
@ npm install
|
||||||
@ ./node_modules/.bin/gulp bower
|
@ ./node_modules/.bin/gulp bower
|
||||||
@ ./node_modules/.bin/gulp vendor js css
|
@ ./node_modules/.bin/gulp vendor js css
|
||||||
@ ./node_modules/.bin/jshint assets/js/{core,components}
|
@ ./node_modules/.bin/jshint assets/js/{core,components,polyfills}
|
||||||
|
|
||||||
|
jshint:
|
||||||
|
@ ./node_modules/.bin/jshint assets/js/{core,components,polyfills}
|
||||||
|
|
||||||
archive:
|
archive:
|
||||||
@ echo "Build archive: version=${version}, destination=${dst}"
|
@ echo "Build archive: version=${version}, destination=${dst}"
|
||||||
|
|
@ -60,8 +63,6 @@ test-mysql:
|
||||||
test-postgres:
|
test-postgres:
|
||||||
@ ./vendor/bin/phpunit -c tests/units.postgres.xml
|
@ ./vendor/bin/phpunit -c tests/units.postgres.xml
|
||||||
|
|
||||||
unittest: test-sqlite test-mysql test-postgres
|
|
||||||
|
|
||||||
test-browser:
|
test-browser:
|
||||||
@ ./vendor/bin/phpunit -c tests/acceptance.xml
|
@ ./vendor/bin/phpunit -c tests/acceptance.xml
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue