coffee.js
781 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/**
* Compile CoffeeScript files to JavaScript.
*
* ---------------------------------------------------------------
*
* Compiles coffeeScript files from `assest/js` into Javascript and places them into
* `.tmp/public/js` directory.
*
* For usage docs see:
* https://github.com/gruntjs/grunt-contrib-coffee
*/
module.exports = function(grunt) {
grunt.config.set('coffee', {
dev: {
options: {
bare: true,
sourceMap: true,
sourceRoot: './'
},
files: [{
expand: true,
cwd: 'assets/js/',
src: ['**/*.coffee'],
dest: '.tmp/public/js/',
ext: '.js'
}, {
expand: true,
cwd: 'assets/js/',
src: ['**/*.coffee'],
dest: '.tmp/public/js/',
ext: '.js'
}]
}
});
grunt.loadNpmTasks('grunt-contrib-coffee');
};