我写了以下文件 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
这是什么意思?