Run scripts synchronous in foreground.

This commit is contained in:
Craig Martin
2016-04-01 16:29:59 -04:00
committed by John-David Dalton
parent b257bb9c9e
commit 669bc1520e

View File

@@ -30,7 +30,7 @@
"webpack": "^1.12.14"
},
"scripts": {
"build": "npm run build:main & npm run build:fp & wait",
"build": "npm run build:main && npm run build:fp",
"build:fp": "node lib/fp/build-dist.js",
"build:fp-modules": "node lib/fp/build-modules.js",
"build:main": "node lib/main/build-dist.js",
@@ -39,7 +39,7 @@
"doc:fp": "node lib/fp/build-doc",
"doc:site": "node lib/main/build-doc site",
"pretest": "npm run build",
"style": "npm run style:main & npm run style:fp & npm run style:perf & npm run style:test & wait",
"style": "npm run style:main && npm run style:fp && npm run style:perf && npm run style:test",
"style:fp": "jscs fp/*.js lib/**/*.js",
"style:main": "jscs lodash.js",
"style:perf": "jscs perf/*.js perf/**/*.js",
@@ -47,6 +47,6 @@
"test": "npm run test:main && npm run test:fp",
"test:fp": "node test/test-fp",
"test:main": "node test/test",
"validate": "npm run style & npm run test & wait"
"validate": "npm run style && npm run test"
}
}