0

尝试运行时grunt,我收到一条错误消息:

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

我已经找到了几个关于这个主题的帖子,每个帖子的问题都是缺少逗号。但就我而言,我不知道出了什么问题,我想我没有错过任何逗号(顺便说一句,此内容是从互联网复制/粘贴的)。

module.exports = (grunt) => {
    grunt.initConfig({
        execute: {
            target: {
                src: ['server.js']
            }
        },
        watch: {
            scripts: {
                files: ['server.js'],
                tasks: ['execute'],
            },
        }
    });

    grunt.loadNpmTasks('grunt-contrib-watch');
    grunt.loadNpmTasks('grunt-execute');
};

可能是什么问题呢?

4

2 回答 2

1

您没有注册默认任务。在最后一个 loadNpmTask 之后添加这个

grunt.registerTask('default', ['execute']);

第二个参数是你想从配置中执行什么,你可以放更多的任务。

或者,您可以通过在 cli 中提供名称作为参数来运行运行现有任务。

grunt execute

通过您的配置,您可以使用executeand watch。有关更多信息,请参阅https://gruntjs.com/api/grunt.task

于 2018-03-20T08:23:36.253 回答
0

如果您在终端中运行grunt,它将搜索“默认”任务,因此您必须使用grunt.registerTask方法注册要执行的任务,第一个参数是您的名称任务,第二个参数是它将运行的子任务数组。

在您的情况下,代码可能是这样的:

...
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-execute');
grunt.registerTask("default", ["execute", "watch"]);
...

这样,“默认”任务将分别运行“执行”和“监视”命令。

但是在这里你可以找到使用 Grunt 创建任务的文档。

希望对您有所帮助。

于 2018-03-20T08:29:42.983 回答