-
Notifications
You must be signed in to change notification settings - Fork 10
/
Gruntfile.js
54 lines (45 loc) · 1.03 KB
/
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
49
50
51
52
53
54
module.exports = function(grunt) {
grunt.initConfig({
'clean': {
src: ["dist"]
},
'babel': {
options: {
sourceMap: true
},
dist: {
files: {
'dist/colorcube.js': 'src/colorcube.js'
}
}
},
'uglify': {
js: {
options: {
sourceMap: true,
sourceMapIncludeSources: true,
sourceMapIn: 'dist/colorcube.js.map', // input sourcemap from a previous compilation
banner: '/* ' + grunt.file.read('LICENSE.md') + ' */'
},
files: {
'dist/colorcube.min.js': 'dist/colorcube.js',
// 'dist/colorcube.es6.min.js': 'dist/colorcube.es6.js'
}
}
},
});
grunt.loadNpmTasks('grunt-contrib-clean');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-babel');
grunt.registerTask('cleanup', [
'clean',
]);
grunt.registerTask('build', [
'cleanup',
'babel',
'uglify:js',
]);
grunt.registerTask('default', [
'build'
]);
};