Proper style npm script execution (#3103).

This commit is contained in:
Michał Lipiński
2017-04-14 13:18:47 +02:00
parent b79b715383
commit e02db41f99

View File

@@ -18,11 +18,7 @@
"doc:site": "node lib/main/build-doc site",
"doc:sitehtml": "optional-dev-dependency marky-markdown@^9.0.1 && npm run doc:site && node lib/main/build-site",
"pretest": "npm run build",
"style": "npm run style:main && npm run style:fp && npm run style:perf && npm run style:test",
"style:fp": "eslint fp/*.js lib/**/*.js",
"style:main": "eslint lodash.js",
"style:perf": "eslint perf/*.js perf/**/*.js",
"style:test": "eslint test/*.js test/**/*.js",
"style": "eslint *.js .internal/**/*.js",
"test": "npm run test:main && npm run test:fp",
"test:doc": "markdown-doctest doc/*.md",
"test:fp": "node test/test-fp",