标签: npm
使用package.json文件,如:
{ "scripts": { "hello": "touch hello && echo hello" } }
运行npm run hello不会创建任何文件,也不会向stdout输出任何内容。我期待两者都发生。
npm run hello
npm -v#4.4.0
答案 0 :(得分:2)
ignore-scripts=true设置在.npmrc
ignore-scripts=true
https://github.com/npm/npm/issues/10675