我有几个文件名为:
- jquery.abcoffee
- jquery.accoffee
- jquery.adcoffee
并且它们都被编译到jquery.js
我的输出目录中的一个文件中。
虽然我猜这种行为在某些情况下可能会很好,但我想让它们编译成不同的文件,比如jquery.a.b.js
,jquery.a.c.js
等等。我如何告诉 grunt-contrib-coffeescript 这样做?
我的 Gruntfile.js 看起来像这样:
module.exports = function (grunt) {
grunt.initConfig({
coffee: {
dist: {
files: [{
expand: true,
flatten: true,
cwd: 'app/webroot/coffee',
src: ['{,*/}*.coffee'],
dest: 'app/webroot/js',
ext: '.js'
}]
}
}
});
grunt.loadNpmTasks('grunt-contrib-coffee');
};
谢谢你的帮助!