最佳答案
在 node 的 package.json 中,我想重用一个在‘ script’中已经有的命令。
下面是一个实际的例子
而不是(请注意 看好了脚本中额外的 - 什么) :
"scripts": {
"test" : "./node_modules/mocha/bin/mocha --compilers coffee:coffee-script/register --recursive -R list",
"watch": "./node_modules/mocha/bin/mocha --compilers coffee:coffee-script/register --recursive -R list -w",
}
我想要一些
"scripts": {
"test" : "./node_modules/mocha/bin/mocha --compilers coffee:coffee-script/register --recursive -R list",
"watch": "npm run script test" + "-w",
}
它不能工作(不能在 json 中执行字符串连接) ,但是您应该可以得到我想要的结果
我知道 npm 脚本支持: - & (平行执行) - & & (依次执行)
也许还有别的选择?