-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathGruntfile.js
48 lines (44 loc) · 969 Bytes
/
Gruntfile.js
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
39
40
41
42
43
44
45
46
47
48
module.exports = function (grunt) {
grunt.initConfig({
typescript: {
base: {
src: ['src/**/*.ts'],
dest: 'bin',
options: {
module: 'commonjs', //or commonjs
target: 'es5', //or es3
basePath: 'src',
sourcemap: false,
fullSourceMapPath: false,
declaration: false
}
}
},
coffee: {
glob_to_multiple: {
expand: true,
cwd: 'src',
src: ['**/*.coffee'],
dest: 'bin',
ext: '.js'
}
},
copy: {
main: {
files: [
{
expand: true,
cwd: 'src/plugins',
src: ['**', '!**/*.ts', '!**/*.coffee'],
dest: 'bin/plugins/'
}
]
}
}
});
grunt.loadNpmTasks('grunt-typescript');
grunt.loadNpmTasks('grunt-contrib-coffee');
grunt.loadNpmTasks('grunt-contrib-copy');
// Default task(s).
grunt.registerTask('default', ['typescript', 'coffee', 'copy']);
};