我已经搜索了一个多小时了,没有帖子帮我解决了我的问题,所以我需要发帖我猜lol
我有一些非常简单的代码,用于尝试运行的grunt任务但是我得到了一个错误。
module.exports = function(grunt){
grunt.initconfig({
pkg: grunt.file.readJSON ('package.json'),
uncss: {
dist: {
files: {
'css/style.css' : ['index.html']
}
}
}
});
grunt.loadNpmTasks('grunt-uncss');
grunt.registerTask('default',['uncss']);
};

我的包文件如下:
{
"name": "Grunt",
"version": "1.0.0",
"description": "grunt",
"main": "index.html",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"tt"
],
"author": "troy",
"license": "ISC",
"devDependencies": {
"grunt": "^0.4.5",
"grunt-uncss": "^0.4.3"
}
}

我得到的错误是:
正在加载" gruntfile.js"任务...错误
TypeError:undefined不是函数 警告:任务"默认"未找到。使用--force继续。
因警告而中止。
非常感谢任何帮助