node.js - fatal error : Unable to find Gruntfile

标签 node.js gruntjs

咕噜--版本

grunt-cli v0.1.8
grunt v0.4.1

$ npm -v

1.2.18

$ Node -v

v0.10.6

当我运行 grunt init 来创建 Gruntfile.js 时,出现错误:

$ grunt init 
A valid Gruntfile could not be found. Please see the getting started guide for
more information on how to configure grunt: http://gruntjs.com/getting-started
Fatal error: Unable to find Gruntfile.

我搜索了 Grunfile.js,得到:

/home/ka/.npm/grunt-cli/0.1.8/package/Gruntfile.js
/home/ka/tmp/npm-1464/1368671910572-0.38816986070014536/package/Gruntfile.js
/usr/local/lib/node_modules/grunt/Gruntfile.js
/usr/local/lib/node_modules/grunt/node_modules/findup-sync/Gruntfile.js
/usr/local/lib/node_modules/grunt-cli/Gruntfile.js
/usr/local/lib/node_modules/grunt-cli/node_modules/findup-sync/Gruntfile.js
/ex/co/www/dev/htdocs/unittest/node_modules/grunt/node_modules/findup-sync/Gruntfile.js
/ex/co/www/dev/htdocs/unittest/node_modules/grunt/Gruntfile.js
/root/.npm/findup-sync/0.1.2/package/Gruntfile.js
/root/.npm/grunt/0.4.1/package/Gruntfile.js
/root/.npm/grunt-cli/0.1.8/package/Gruntfile.js

我可以将这些 grunt 文件之一复制到/ex/co/www/dev/htdocs/unittest(Javascript/quint 测试所在的位置)吗?还是我还缺少其他东西?

我正在尝试在 Centos 6.4 上运行 grunt。另外,为什么 grunt init 不创建 Gruntfile.js

cp /root/.npm/grunt/0.4.1/package/Gruntfile.js /ex/co/www/dev/htdocs/unittest/

我按原样复制了它,现在我得到了更好的错误:

grunt 
>> Local Npm module "grunt-contrib-jshint" not found. Is it installed?
>> Local Npm module "grunt-contrib-nodeunit" not found. Is it installed?
>> Local Npm module "grunt-contrib-watch" not found. Is it installed?
Warning: Task "jshint" not found. Use --force to continue.

Aborted due to warnings.

模式进度....

grunt 
Running "jshint:gruntfile" (jshint) task
Warning: Cannot call method 'forEach' of undefined Use --force to continue.

Aborted due to warnings.
kahmed@vm-devqa01 /ex/co/www/dev/htdocs/unittest $ grunt --force
Running "jshint:gruntfile" (jshint) task
Warning: Cannot call method 'forEach' of undefined Used --force, continuing.
Warning: Cannot call method 'forEach' of undefined Used --force, continuing.

Running "jshint:libs_n_tests" (jshint) task
Warning: Cannot call method 'forEach' of undefined Used --force, continuing.
Warning: Cannot call method 'forEach' of undefined Used --force, continuing.

Running "jshint:subgrunt" (jshint) task
Warning: Cannot call method 'forEach' of undefined Used --force, continuing.
Warning: Cannot call method 'forEach' of undefined Used --force, continuing.

Running "nodeunit:all" (nodeunit) task
Warning: Cannot call method 'map' of undefined Used --force, continuing.
Warning: Cannot call method 'map' of undefined Used --force, continuing.

Running "subgrunt:all" (subgrunt) task
Warning: Cannot read property 'length' of undefined Used --force, continuing.
Warning: Cannot read property 'length' of undefined Used --force, continuing.

Done, but with warnings.

我的 Gruntfile.js:

/*
 * grunt
 * http://gruntjs.com/
 *
 * Copyright (c) 2013 "Cowboy" Ben Alman
 * Licensed under the MIT license.
 * https://github.com/gruntjs/grunt/blob/master/LICENSE-MIT
 */

'use strict';

module.exports = function(grunt) {

  // Project configuration.
  grunt.initConfig({
    nodeunit: {
      all: ['test/{grunt,tasks,util}/**/*.js']
    },
    jshint: {
      gruntfile: ['Gruntfile.js'],
      libs_n_tests: ['lib/**/*.js', '<%= nodeunit.all %>'],
      subgrunt: ['<%= subgrunt.all %>'],
      options: {
        curly: true,
        eqeqeq: true,
        immed: true,
        latedef: true,
        newcap: true,
        noarg: true,
        sub: true,
        undef: true,
        unused: true,
        boss: true,
        eqnull: true,
        node: true,
        es5: true
      }
    },
    watch: {
      gruntfile: {
        files: ['<%= jshint.gruntfile %>'],
        tasks: ['jshint:gruntfile']
      },
      libs_n_tests: {
        files: ['<%= jshint.libs_n_tests %>'],
        tasks: ['jshint:libs_n_tests', 'nodeunit']
      },
      subgrunt: {
        files: ['<%= subgrunt.all %>'],
        tasks: ['jshint:subgrunt', 'subgrunt']
      }
    },
    subgrunt: {
      all: ['test/gruntfile/*.js']
    },
  });

  // These plugins provide necessary tasks.
  grunt.loadNpmTasks('grunt-contrib-jshint');
  grunt.loadNpmTasks('grunt-contrib-nodeunit');
  grunt.loadNpmTasks('grunt-contrib-watch');
  grunt.loadNpmTasks('grunt-contrib-qunit');

  grunt.registerTask('test', 'qunit:src');

  // "npm test" runs these tasks
  grunt.registerTask('test', ['jshint', 'nodeunit', 'subgrunt']);

  // Default task.
  grunt.registerTask('default', ['test']);

  // Run sub-grunt files, because right now, testing tasks is a pain.
  grunt.registerMultiTask('subgrunt', 'Run a sub-gruntfile.', function() {
    var path = require('path');
    grunt.util.async.forEachSeries(this.filesSrc, function(gruntfile, next) {
      grunt.util.spawn({
        grunt: true,
        args: ['--gruntfile', path.resolve(gruntfile)],
      }, function(error, result) {
        if (error) {
          grunt.log.error(result.stdout).writeln();
          next(new Error('Error running sub-gruntfile "' + gruntfile + '".'));
        } else {
          grunt.verbose.ok(result.stdout);
          next();
        }
      });
    }, this.async());
  });

};

最佳答案

我认为您正在寻找的是在 Project Scaffolding 中找到的实际命令行工具 grunt-init文档。

您当前的命令 grunt init 正在寻找 Gruntfile.js 和其中的任务 init。显然无法找到您的 Gruntfile.js 所以抛出该错误。

编辑:

您的新错误是因为您复制了一个 Gruntfile.js 文件,并且 default 任务(如果您想打开它可以在底部附近找到)将调用那些模块。通常你会使用类似 bower 的东西将它们安装到你的本地目录中。

我上面提到的您的默认任务将如下所示:

grunt.registerTask('default', ['jshint', 'qunit', 'concat', 'uglify']);

这基本上是说:当我在命令行运行 grunt 时,运行任务 jshintqunitconcatuglify 的顺序。这些任务将在之前的 Gruntfile 中指定。要了解该文件,请查看 sample Gruntfile .

我建议您看看Yeoman因为它是一个很好的工具,可以为您的应用程序提供脚手架(包括工作的 Gruntfile.js)。

编辑 2:

了解正在发生的事情很重要。您复制的 Gruntfile.js 看起来正在调用“subgrunt”任务。即子项目中的 grunt 任务。这是你想要的吗?

按照您的 Gruntfile.js - 当您运行 grunt 时,它会调用以下顺序:'jshint', 'nodeunit', 'subgrunt'

理想情况下,您想自己编写而不是复制它,因为 jshint 调用了一些我不熟悉的选项。如果您阅读 jshint documentation它没有提到前三个选项。

我认为你应该尝试这样的事情:

jshint: {
  options: {
    curly: true,
    eqeqeq: true,
    immed: true,
    latedef: true,
    newcap: true,
    noarg: true,
    sub: true,
    undef: true,
    unused: true,
    boss: true,
    eqnull: true,
    node: true,
    es5: true
  }
  files: {
    src: ['path/to/your/*.js', 'another/path/to/your/*.js']
  }
}

您应该通读每项任务的文档,并确保您了解所传递的选项。

另一个提示。如果您看到如下文件引用:

 <%= jshint.gruntfile %>

这是对 Gruntfile.js 中特定文件/属性集的引用。在这种情况下,这来自 watch 任务并指向 jshint.gruntfile 属性作为要监视的文件。

关于node.js - fatal error : Unable to find Gruntfile,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16611235/

相关文章:

javascript - Grunt-injector - 首先注入(inject)父目录

javascript - 使用 grunt 任务将代码注入(inject) AngularJS 文件

windows - Grunt/Batch : how to execute shell commands within the gruntfile. js 目录?

javascript - Babel 插件 "transform-runtime"仅在首次编译后有效

gruntjs - gulp watch 和 browserify。观看但不会再次构建

node.js - 设置非 Node Web 角色的 Node 版本

javascript - 在 Nodejs 中陷入 JSON 嵌套对象和回调之间

javascript - 更新到 Node 10-alpine 后 - ERR_STREAM_CANNOT_PIPE

node.js - 在 docker 容器内安装 npm 时依赖项损坏

git - Heroku + Github 部署策略