阅读(595)
赞(8)
npm 严格安装测试 install-ci-test
2021-09-06 14:35:27 更新
重新安装一个项目并运行测试
概要
npm install-ci-test
alias: npm cit
描述
此命令运行 ,npm ci
后跟一个npm test
。
配置
audit 审计
- 默认值:
true
- 类型:
Boolean
当为true
时,将审计报告与当前 npm 命令一起提交到默认注册表和为范围配置的所有注册表。
ignore-scripts 忽略脚本
- 默认值:
false
- 类型:
Boolean
如果为 true
,则 npm 不会运行 package.json
文件中指定的脚本。
请注意,明确用于运行特定脚本的命令,例如 npm start
, npm stop
, npm restart
, npm test
, 并且npm run-script
如果ignore-scripts
已设置仍将运行其预期脚本,但它们不会运行任何前置或后置脚本。
script-shell
- 默认值:
POSIX
系统上的/bin/sh
,Window
上的cmd.exe
- 类型:
null
或字String
用于脚本的 shell 与npm exec
,npm run
和npm init <pkg>
命令一起运行。