forked from manuhabitela/drawingboard.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
75 lines (70 loc) · 1.9 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
module.exports = function(grunt) {
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-cssmin');
grunt.initConfig({
bwr: grunt.file.readJSON('bower.json'),
meta: {
banner: "/* <%= bwr.name %> v<%= bwr.version %> - https://github.com/Leimi/drawingboard.js\n" +
"* Copyright (c) <%= grunt.template.today('yyyy') %> Emmanuel Pelletier\n" +
'* Licensed MIT */\n'
},
concat: {
options: {
banner: "<%= meta.banner %>"
},
light: {
src: [
'bower_components/simple-undo/lib/simple-undo.js',
'js/utils.js',
'js/board.js'
],
dest: 'dist/drawingboard.nocontrol.js'
},
full: {
src: ['bower_components/simple-undo/lib/simple-undo.js', 'js/utils.js', 'js/board.js', 'js/controls/control.js', 'js/controls/color.js', 'js/controls/drawingmode.js', 'js/controls/navigation.js', 'js/controls/size.js', 'js/controls/download.js'],
dest: 'dist/drawingboard.js'
},
cssLight: { //simple copy in order to have everything in dist/
src: ['css/drawingboard.nocontrol.css'],
dest: 'dist/drawingboard.nocontrol.css'
},
cssFull: { //simple copy in order to have everything in dist/
src: ['css/drawingboard.css'],
dest: 'dist/drawingboard.css'
}
},
uglify: {
options: {
banner: "<%= meta.banner %>",
report: "gzip"
},
light: {
files: {
'dist/drawingboard.nocontrol.min.js': ['dist/drawingboard.nocontrol.js']
}
},
full: {
files: {
'dist/drawingboard.min.js': ['dist/drawingboard.js']
}
}
},
cssmin: {
options: {
banner: "<%= meta.banner %>"
},
light: {
files: {
'dist/drawingboard.nocontrol.min.css': ['css/drawingboard.nocontrol.css']
}
},
full: {
files: {
'dist/drawingboard.min.css': ['css/drawingboard.css']
}
}
}
});
grunt.registerTask('default', ['concat', 'uglify', 'cssmin']);
};