2015-03-26 16:15 grunt[5684] (FSEvents.framework) FSEventStreamStart: register_with_server: ERROR: f2d_register_rpc() => (null) (-21)用grunt的時(shí)候出現(xiàn)了這個(gè)問題。module.exports?=?function?(grunt)?{
//配置模塊參數(shù)
grunt.initConfig({
cssmin:?{
minify:?{
expand:?true,
cwd:?"/",
src:?["**/*.css","**/!*.min.css"],
dest:?"/",
ext:?".min.css"
}
},
jshint:?{
options:?{
trailing:?true?
},
files:?["**/*.js"]
},
uglify:?{
options:?{
sourceMap:?true
},
target?:?{
expand:?true,
cwd:?'js/origin',
src?:?'*.js',
dest?:?'/'
}
},
watch:?{
scripts:?{
files:?"**/*.js",
tasks:?["jshint","uglify"]
},
css:?{
files:?"**/*.css",
tasks:?["cssmin"]
}
}
});
require("load-grunt-tasks")(grunt);
grunt.registerTask("default",["watch"]);
};
有人用node和grunt么?求助:ERROR: f2d_register_rpc() => (null) (-21)
ZZZero
2015-03-26 16:28:20