-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
152 lines (136 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
// global module:false
var pleeeaseNavigators = [
'last 15 versions',
'Firefox 4',
'Opera 1',
"Android 1",
"BlackBerry 1",
"Chrome 1",
"Explorer 1",
"iOS 1",
"Opera 1",
"Safari 1"
];
// CSS files to consider for grunt less / pleeease task
var cssFiles = [
"styles"
];
// usage
// from : the folder where file exists
// froExt : the extension of files in this folder
// to : the destination of file
// toExt : the new extension of copied/modified files
var cssFromTo = function (from, fromExt, to, toExt) {
var files = {};
for (var i in cssFiles) {
files[to + cssFiles[i] + '.' + toExt] = from + cssFiles[i] + '.' + fromExt;
}
return files;
};
// grunt task
module.exports = function (grunt) {
// Project configuration.
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
clean: {
options: {
'no-write': false,
},
sim: [
'htdocs/styles/*',
'htdocs/js/*'
]
},
jshint: {
// doc http://www.jshint.com/docs/
options: {
globals: {
//jQuery: true
//console: true,
//module: true
}
},
files: ['Gruntfile.js', 'htdocs/**/*.js']
},
copy: {
third: {
files: [{ // angular
expand: true,
cwd: 'bower_components/angular',
src: ['angular.min.js'],
dest: 'htdocs/js/static/'
}, { // angular-bootstrap
expand: true,
cwd: 'bower_components/angular-bootstrap',
src: ['ui-bootstrap.min.js'],
dest: 'htdocs/js/static/'
}, ]
},
},
less: {
dev: {
files: cssFromTo('less/', 'less', 'tmp/', 'css')
}
},
// css post treatment
pleeease: {
dev: {
options: {
fallbacks: {
autoprefixer: pleeeaseNavigators
},
optimizers: {
minifier: false, // default = true
import: false, // default = true
mqpacker: false // media query packer : default = true
}
},
files: cssFromTo('tmp/', 'css', 'htdocs/styles/', 'css')
}
},
// debug https://github.com/gruntjs/grunt-contrib-watch/blob/master/docs/watch-options.md
watch: {
less: {
options: {
spawn: false, // faster but buggy
livereload: false,
interrupt: true,
},
files: ['less/**/*.less'],
tasks: ['less'],
},
pleeease: {
options: {
spawn: false, // faster but buggy
livereload: false,
interrupt: true,
},
files: ['tmp/**/*.css'],
tasks: ['pleeease'],
},
livereload: {
options: {
livereload: true,
},
files: ['htdocs/**/*']
}
}
});
// grunt functions only reload one file
grunt.event.on('watch', function (action, filepath, target) {
switch (target) {
case 'livereload':
grunt.config('watch.livereload.files', filepath);
break;
}
});
// These plugins provide necessary tasks.
require('load-grunt-tasks')(grunt);
// Tasks for watch
grunt.registerTask('create-js', ['clean', 'jshint', 'copy']);
grunt.registerTask('create-css', ['less', 'pleeease']);
grunt.registerTask('prod', ['create-js', 'create-css']);
// Default task.
grunt.registerTask('build', ['create-js', 'create-css']);
grunt.registerTask('default', 'build');
};