forked from FDA/open.fda.gov
-
Notifications
You must be signed in to change notification settings - Fork 1
/
gruntfile.js
64 lines (61 loc) · 1.48 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
var autoprefixer = require('autoprefixer');
module.exports = function(grunt) {
grunt.initConfig({
less: {
development: {
options: {
compress: true,
yuicompress: true,
optimization: 2
},
files: {
// target.css file: source.less file
"static/css/style.css": "static/less/style.less"
}
}
},
minified : {
files: {
src: [
'static/js/*.js'
],
dest: 'static/js/min/'
},
options : {
sourcemap: true,
allinone: false
}
},
postcss: {
options: {
processors: [
autoprefixer({ browsers: ['last 2 version'] }).postcss
]
},
dist: { src: 'css/*.css' }
},
watch: {
styles: {
// Which files to watch (all .less files recursively in the less directory)
files: ['static/less/*.less', 'static/bower_components/bootstrap/less/*.less'],
tasks: ['less'],
options: {
nospawn: true
}
},
js: {
// Which files to watch (all .less files recursively in the less directory)
files: ['static/js/*.js'],
tasks: ['minified'],
options: {
nospawn: true
}
},
}
});
grunt.loadNpmTasks('grunt-contrib-less');
grunt.loadNpmTasks('grunt-postcss');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-minified');
grunt.registerTask('default', ['watch']);
};