4

我写了以下文件 grunt.js

var _path = require('path');

module.exports = function (grunt) {
    var config = {
    };


    function addProject(project) {
        grunt.helper('addProject', config, project);
    }

    addProject({
        name:'mytest',
        type:'module',
        sourcePath:'../source',
        outputPath:'../test/',
        version : grunt.option('ver')||'0.1.0.0'
    });

    grunt.registerTask('default', 'module closureCompiler');
    grunt.initConfig(config);
};

当我在我的 bat 文件模块closureCompiler 同步中使用命令运行它时,它给出了一个错误提示

Running "sync" task
>> No "sync" targets found.
<WARN> Task "sync" failed. Use --force

这是什么意思?

4

1 回答 1

5

正如错误消息指出的那样,您需要为sync任务定义一个目标:

grunt.initConfig({
    sync: {
        target: {}   // <= needs to be defined
    }
});
于 2013-08-26T13:04:38.100 回答