forked from fakedarren/vote.forlabour
-
Notifications
You must be signed in to change notification settings - Fork 2
/
GruntFile.js
39 lines (35 loc) · 1020 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
'use strict';
module.exports = function(grunt){
grunt.initConfig({
less: {
development: {
options: {
paths: ['./src/public/less']
},
files: {
'./src/public/css/style.css': './src/public/less/style.less'
}
}
},
postcss: {
options: {
map: false,
processors: [
require('autoprefixer')({browsers: 'last 2 versions'}),
require('cssnano')()
]
},
dist: {
src: './src/public/css/style.css'
}
},
watch: {
files: ['./src/public/less/**/*'],
tasks: ['less', 'postcss']
}
});
grunt.loadNpmTasks('grunt-contrib-less');
grunt.loadNpmTasks('grunt-postcss');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.registerTask('default', ['less', 'postcss']);
};