我使用grunt-contrib-coffee在AngularJS項目,我想設置基於咕嚕的目標配置選項。我有(使用grunt-load-options)以下配置文件:目標使用咕嚕-的contrib咖啡
'use strict';
module.exports = function(grunt) {
return {
stage: {
glob_to_multiple: {
expand: true,
nonull: true,
cwd: 'src/js/',
src: ['*.coffee', 'config/stage.coffee'],
dest: '.tmp/js/',
ext: '.js'
}
}
};
};
但是當我執行使用grunt coffee:stage
任務沒有文件被複制。有任何想法嗎?
Running "coffee:stage" (coffee) task
>> 0 files created.
Done, without errors.
謝謝!
是否已進行了一定的配置文件是正確命名?在這種情況下'coffee.js'? – frhd
有什麼好運氣? – frhd
是的,正確命名。 –