我的package.json文件中有一个npm任务,如下所示执行笑话测试:
"scripts": { "test-jest": "jest", "jest-coverage": "jest --coverage" }, "jest": { "testEnvironment": "jsdom" },
我想npm run test-jest使用grunt 执行此任务。我为此安装了grunt-run并添加了run任务,但是如何在其中调用此npm任务呢?
npm run test-jest
run: { options: { // Task-specific options go here. }, your_target: { cmd: 'node' } }
配置Gruntfile.js与文档中显示的示例类似的示例。
Gruntfile.js
cmd
npm
run
test-jest
args
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命令。
$ grunt
注意:向Array 添加--silent(或等效的简写-s)args只是有助于避免向控制台添加额外的npm日志。
--silent
-s
编辑:
跨平台
通过grunt-runWindows运行时,无法在Windows操作系统上使用上述解决方案cmd.exe。引发以下错误:
grunt-run
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
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
grunt.loadNpmTasks(...)
npm i -D load-grunt-tasks
1.3.0
npm i -D grunt-shell@1.3.0
编辑2
grunt-run 如果您使用exec键而不是cmd和args键,则在Windows上似乎确实可以使用…
exec
出于跨平台的目的…我发现有必要根据exec阅读以下文档的密钥将命令指定为单个字符串:
如果要将命令指定为单个字符串,这对于在一个任务中指定多个命令很有用,请使用exec:键
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' ]); };