-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathGruntfile.js
99 lines (85 loc) · 2.23 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
module.exports = function( grunt )
{
var latest = '<%= pkg.name %>',
name = '<%= pkg.name %>-v<%= pkg.version%>',
bannerContent =
'/*!\n' +
' * <%= pkg.name %> <%= pkg.version %> - Copyright <%= grunt.template.today("yyyy") %> Terrill Dent, http://terrill.ca\n' +
' * <%= pkg.license %>\n' +
' */\n',
sourceDir = 'src/',
distDirJS = 'dist/js/',
distDirCSS = 'dist/css/',
devCSS = name+'.css',
devJS = name+'.js',
minJS = name+'.min.js';
gzipJS = name+'.min.js.gz';
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
// configure uglify task
uglify:{
options : {
banner: bannerContent,
report: 'gzip',
mangle: {
except: [ '$', 'flip' ]
}
},
flip: {
src: distDirJS + devJS,
dest: distDirJS + minJS
}
},
jslint: {
flip: {
src: ['src/js/**/*.js'],
directives: {
sloppy: true,
browser: true,
nomen: true,
plusplus: true,
todo: true,
white: true,
predef: ['console']
},
options: {
failOnError: false
}
}
},
// configure concat task
concat: {
options : {
process : function( source, filepath ) {
/* Remove block comments */
return source.replace( /\/\*([\s\S]*?)\*\//g, '' );
},
banner: bannerContent
},
js: {
src: [ sourceDir + 'js/flip.js',
sourceDir + '**/*.js' ],
dest : distDirJS + devJS
},
css: {
src: [ sourceDir + 'css/flip.css',
sourceDir + '**/*.css' ],
dest : distDirCSS + devCSS
}
},
compress: {
flip: {
options: {
mode: 'gzip'
},
src : [ distDirJS + minJS ],
dest : distDirJS + gzipJS
}
}
});
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-compress');
grunt.loadNpmTasks('grunt-jslint');
grunt.registerTask('default', [ 'jslint:flip', 'concat', 'uglify:flip', 'compress:flip' ] );
};