标签: node.js npm npm-scripts
我的package.json中有这个
"scripts": { "pretest" : " node pretestscript.js", "test": "test testscript", }
我通过npm run test -- --arg1 abc arg2 def运行时,我希望预测试也使用这些参数并像node pretestscript.js --arg1 abc arg2 def那样运行
npm run test -- --arg1 abc arg2 def
node pretestscript.js --arg1 abc arg2 def
我该如何实现?