我尝试使用grunt几个小时但没有成功,希望你能帮助我。
我的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所以文件夹似乎没问题,但我不能没有错误地运行它。
希望你们中的某些人可以帮助我,因为我不知道该怎么做。