0

我正在尝试设置一些简单的 Grunt 任务,但在运行它们时,我在终端中收到警告“警告:未找到任务“默认”。

我已将 gruntfile 简化为一项任务,以减少由语法错误引起的可能性,但我仍然收到相同的警告...

gruntfile.js

exports.module = function (grunt) {
grunt.initConfig({
    pkg: grunt.file.readJSON('package.json'),
    uglify: {
        build: {
            files: {
                '/public/scripts/test.min,js' : ['/public/scripts/test.js']
            }
        }
    }
});

grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.registerTask('default', ['uglify']);

};

包.json

 {
      "name": "CustomersCRUD",
      "version": "0.0.1",
      "description": "Customer CRUD Application",
      "main": "app.js",
      "scripts": {
          "test": "echo \"Error: no test specified\" && exit 1"
      },
      "author": "Dan Hutchinson",
      "license": "ISC",
      "dependencies": {
        "express": "^4.6.1",
        "serve-favicon": "^2.0.1"
      },
      "devDependencies": {
         "grunt": "^0.4.5",
         "grunt-contrib-uglify": "^0.5.0"
      }
     }

给出警告

Warning: Task "default" not found. Use --force to continue.

Aborted due to warnings.

非常感谢!

4

2 回答 2

1

我在这里看到一个逗号:'/public/scripts/test.min,js'

这可能是你的问题吗?

于 2014-07-19T20:13:13.453 回答
1

好的,以前没听过,但module.exports不是exports.module

那应该解决它。另外,我不相信您的文件引用需要/在它们之前。

于 2014-07-20T01:07:40.150 回答