stick to prepare to avoid re-running yarn for addons everytime during build

This commit is contained in:
Jörg Breitbart
2019-10-26 17:20:35 +02:00
parent 03435a9f4d
commit 5b3a093f13
+3 -2
View File
@@ -16,9 +16,10 @@
"posttest": "npm run lint",
"test-api": "mocha \"**/*.api.js\"",
"test-unit": "node ./bin/test.js",
"prebuild": "node ./bin/install-addons.js",
"build": "tsc -b ./tsconfig.all.json",
"prepare": "npm run build",
"prepare": "npm run setup",
"setup": "npm run build",
"presetup": "node ./bin/install-addons.js",
"prepublishOnly": "npm run package",
"watch": "tsc -b -w ./tsconfig.all.json --preserveWatchOutput",
"benchmark": "NODE_PATH=./out xterm-benchmark -r 5 -c test/benchmark/benchmark.json",