-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathGruntfile.js
196 lines (186 loc) · 4.1 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
/*global module:false*/
module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
meta: {
banner: '/*! \n' +
' * <%= pkg.name %> v<%= pkg.version %> [<%= grunt.template.today("yyyy-mm-dd") %>] \n' +
' * <%= pkg.description %> \n' +
' * <%= pkg.author %> \n' +
' */ \n\n'
},
// Watcher
watch: {
scripts: {
files: [
'js/src/**.js',
'js/src/*/**.js'
],
tasks: [
'newer:jshint:target',
'newer:concat:target',
'newer:includereplace:target'
]
},
styles: {
files: [
'css/src/**.css',
'css/src/*/**.css',
'css/src/**.less',
'css/src/*/**.less'
],
tasks: [
'newer:less:target',
'newer:stripmq:all'
]
}
},
// Newer
newer: {
options: {
override: function(details, include) {
if (details.task === 'less') {
checkForNewerImports(details.path, details.time, include);
} else {
include(false);
}
}
}
},
// JS Hint
jshint: {
target: {
src: [
'js/src/**.js',
'js/src/*/**.js'
],
options: {
ignores: '<%= pkg.js_ignores %>',
globals: {
'jQuery' : true,
'$' : true,
'WWW_ROOT' : true
},
'-W003': true, // used before defined
devel: true, // allow console
browser: true,
curly: true,
eqeqeq: true,
forin: true,
freeze: true,
immed: true,
latedef: true,
newcap: true,
noarg: true,
nonew: true,
smarttabs: true,
sub: true,
undef: true,
validthis: true
}
}
},
// Uglify - For production
uglify: {
options: {
banner: '<%= meta.banner %>',
report: 'min'
},
target: {
files: '<%= pkg.js %>'
}
},
// Concat - For development
concat: {
target: {
files: '<%= pkg.js %>'
}
},
// Replace
includereplace: {
target: {
options: {
prefix: '@',
globals: '<%= pkg.vars %>'
},
dest: 'js/',
src: '*.js',
expand: true,
cwd: 'js/'
}
},
// LESS
less: {
target: {
options: {
report: 'min',
cleancss: true,
modifyVars: '<%= pkg.vars %>',
banner: '<%= meta.banner %>'
},
files: '<%= pkg.css %>'
}
},
// Auto Prefixer
autoprefixer: {
options: {
borwsers: [ '> 1%', 'last 5 versions', 'Firefox ESR', 'Opera 12.1', '>= ie 8' ]
},
no_dest: {
src: 'css/*.css'
}
},
// Strip MQ
stripmq: {
options: {
width: 1024,
type: 'screen',
cleanCss: false
},
all: {
files: {
'css/site.ie8.css': [ 'css/site.ie8.css' ]
}
}
}
});
// Newer LESS Imports
function checkForNewerImports(lessFile, mTime, include) {
var fs = require('fs'),
path = require('path');
fs.readFile(lessFile, "utf8", function(err, data) {
var lessDir = path.dirname(lessFile),
regex = /@import "(.+?)(\.less)?";/g,
shouldInclude = false,
match;
while ((match = regex.exec(data)) !== null) {
var importFile = lessDir + '/' + match[1] + '.less';
if (fs.existsSync(importFile)) {
var stat = fs.statSync(importFile);
if (stat.mtime > mTime) {
shouldInclude = true;
break;
}
}
}
include(shouldInclude);
});
}
// Load tasks
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-less');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-include-replace');
grunt.loadNpmTasks('grunt-combine-media-queries');
grunt.loadNpmTasks('grunt-autoprefixer');
grunt.loadNpmTasks('grunt-newer');
grunt.loadNpmTasks('grunt-stripmq');
// Default task
grunt.registerTask('default', [ 'css', 'js' ]);
// CSS
grunt.registerTask('css', [ 'less', 'autoprefixer', 'stripmq' ]);
// JS
grunt.registerTask('js', [ 'jshint', 'uglify', 'includereplace' ]);
};