如何使用 grunt-run 执行 npm 脚本?

IT技术 node.js reactjs npm gruntjs jestjs
2021-04-10 05:23:23

我的 package.json 文件中有一个 npm 任务,如下所示来执行 jest 测试:

  "scripts": {
    "test-jest": "jest",
    "jest-coverage": "jest --coverage"
  },
  "jest": {
    "testEnvironment": "jsdom"
  },

我想npm run test-jest使用 grunt执行此任务我安装了 grunt-run 并添加了 run 任务,但是我如何在那里调用这个 npm 任务?

    run: {
        options: {
          // Task-specific options go here.
        },
        your_target: {
          cmd: 'node'
        }
      }
1个回答

配置Gruntfile.js类似于文档中显示示例

  1. 将 的值设置cmdnpm
  2. 数组中设置runtest-jestargs

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(或其简写等效项-sargs只是有助于避免将额外的 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' ]);

};

笔记

  1. grunt-shell需要load-grunt-tasks来加载 Task 而不是典型的grunt.loadNpmTasks(...),所以你也需要安装它:

npm i -D load-grunt-tasks

  1. 对于较旧版本的 Windows,我必须安装较旧版本的grunt-shell,即 版本1.3.0,因此我建议安装较早版本。

npm i -D grunt-shell@1.3.0


编辑 2

grunt-run如果您使用exec键而不是cmdargs键,它似乎在 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' ]);

};
@Mark - 尝试npm run build直接在命令行中运行,如果错误仍然存​​在,则表明该错误与grunt-run. 它很可能与您正在运行的 nodejs 脚本有关。在您的app.js脚本中,您肯定需要更改此评论中的建议一旦运行npm run build直接在命令行是成功的,那么使用grunt-run应该没问题。
2021-06-08 05:23:23
@Mark - 您是否尝试过完全省略args键/值(根据我在 edit2 中的建议),并将npm run build命令作为exec的值放置例如:grunt.initConfig({ run: { build: { exec: 'npm run build' } } });
2021-06-09 05:23:23
是的,使用grunt-run我在 Windows 上运行时也遇到了同样的错误 - 但它在 Mac 上运行成功。您是否尝试使用grunt-shell而不是grunt-run- 如我回答跨平台部分所述?grunt-shell我在 Windows 和 Mac 上都成功使用了
2021-06-17 05:23:23
谢谢 Manu - 我实际上刚刚找到了一种使用密钥来使用grunt-run跨平台的方法exec因此,如果您更喜欢使用grunt-run而不是grunt-shellEDIT 2部分下查看我更新的答案
2021-06-17 05:23:23
通过 CLI 运行任务给我带来了这个错误:运行“run:npm_test_jest”(运行)任务 >> 错误:生成 npm ENOENT 警告:非零退出代码 -4058 使用 --force 继续。由于警告而中止。
2021-06-18 05:23:23