配置Gruntfile.js
类似于文档中显示的示例。
- 将 的值设置
cmd
为npm
。
- 在数组中设置
run
和。test-jest
args
Gruntfile.js
module.exports = function (grunt) {
grunt.loadNpmTasks('grunt-run');
grunt.initConfig({
run: {
options: {
// ...
},
npm_test_jest: {
cmd: 'npm',
args: [
'run',
'test-jest',
'--silent'
]
}
}
});
grunt.registerTask('default', [ 'run:npm_test_jest' ]);
};
跑步
$ grunt
使用上面显示的配置通过 CLI运行将调用该npm run test-jest
命令。
注意:向Array添加--silent
(或其简写等效项-s
)args
只是有助于避免将额外的 npm 日志记录到控制台。
编辑:
跨平台
使用grunt-run
上面显示通过运行时失败的Windows操作系统的解决方案cmd.exe
。抛出了以下错误:
Error: spawn npm ENOENT Warning: non-zero exit code -4058 Use --force to continue.
对于跨平台解决方案,请考虑安装和使用grunt-shell来调用它npm run test-jest
。
npm i -D grunt-shell
Gruntfile.js
module.exports = function (grunt) {
require('load-grunt-tasks')(grunt); // <-- uses `load-grunt-tasks`
grunt.initConfig({
shell: {
npm_test_jest: {
command: 'npm run test-jest --silent',
}
}
});
grunt.registerTask('default', [ 'shell:npm_test_jest' ]);
};
笔记
grunt-shell
需要load-grunt-tasks来加载 Task 而不是典型的grunt.loadNpmTasks(...)
,所以你也需要安装它:
npm i -D load-grunt-tasks
- 对于较旧版本的 Windows,我必须安装较旧版本的
grunt-shell
,即 版本1.3.0
,因此我建议安装较早版本。
npm i -D grunt-shell@1.3.0
编辑 2
grunt-run
如果您使用exec
键而不是cmd
和args
键,它似乎在 Windows 上工作...
出于跨平台的目的......我发现有必要exec
根据以下文档使用密钥将命令指定为单个字符串:
如果您想将命令指定为单个字符串,这对于在一项任务中指定多个命令很有用,请使用 exec: 键
Gruntfile.js
module.exports = function (grunt) {
grunt.loadNpmTasks('grunt-run');
grunt.initConfig({
run: {
options: {
// ...
},
npm_test_jest: {
exec: 'npm run test-jest --silent' // <-- use the exec key.
}
}
});
grunt.registerTask('default', [ 'run:npm_test_jest' ]);
};