"咕噜-的contrib-的concat"未找到

时间:2015-02-18 09:10:07

标签: gruntjs

我尝试使用grunt几个小时但没有成功,希望你能帮助我。

  • 我使用osx 10.10
  • npm已安装并更新
  • grunt安装
  • 从不同的docus
  • 创建的示例gruntfile.js
  • 安装了第一个包
    • npm install grunt-contrib-concat --save-dev

我的gruntfile.js

module.exports = function(grunt) {

  // Project configuration.
  grunt.initConfig({
    concat: {
      dist: {
        src: 'html/javascripts/*.js',
        dest: 'html/javascripts/plugins.combined.js'
      },
    },
  });

  grunt.loadNpmTasks('grunt-contrib-concat');

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

};

我有一个示例html项目,其中我添加了gruntfile.js并尝试运行grunt命令。但我每次都会得到错误。

  
    
      

本地Npm模块" grunt-contrib-concat"未找到。它安装了吗?警告:任务" concat"未找到。使用--force来       继续。

    
  

但是在./node_modules/文件夹中安装了grunt。我可以运行grunt所以文件夹似乎没问题,但我不能没有错误地运行它。

希望你们中的某些人可以帮助我,因为我不知道该怎么做。

0 个答案:

没有答案