-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGruntfile.js
40 lines (31 loc) · 888 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
module.exports = function(grunt) {
var files = [ 'src/sketchpad.js' ]
// Project configuration.
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
// concat step
concat: {
build: {
files: {
'dist/<%= pkg.name %>-<%= pkg.version %>.js': files
}
}
},
// uglify step
uglify: {
options: {
banner: '/*! <%= pkg.casedName %>.js v<%= pkg.version %> | (c) 2015 <%= pkg.author %> */\n'
},
build: {
files: {
'dist/<%= pkg.name %>-<%= pkg.version %>.min.js': ['dist/<%= pkg.name %>-<%= pkg.version %>.js']
}
}
},
});
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-concat');
var build_steps = ['concat', 'uglify'];
grunt.registerTask('default', build_steps );
grunt.registerTask('build', build_steps);
};