1

我从grunt开始。我想从 CLI 执行几个 php 文件。

所以我已经安装了 grunt-shell npm install --save-dev grunt-shell

现在我有这个 gruntfile:

module.exports = function(grunt) {

  grunt.initConfig({
    shell: {
      php: {
        multiple: {
          command:  [
            'php -f /home/leandro/oskar.php',
            'php -f /home/leandro/oskar2.php'
          ].join('&')
        }
      }
    }
  });


  grunt.registerTask('default', ['shell:php']);
};

我已经尝试了调用任务的所有组合,但输出始终是:

Warning: Task "shell:php" not found. Use --force to continue. Aborted due to warnings.

4

1 回答 1

0

好吧,我从 Grunt 开始,似乎 node 的 package.json 是强制性的。它适用于它!:)

于 2016-02-13T10:13:38.847 回答