-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
72 lines (67 loc) · 1.94 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
module.exports = function(grunt) {
require('time-grunt')(grunt);
grunt.registerTask('default', [ 'connect', 'less', 'watch' ]);
grunt.initConfig({
dirs: {
css: 'css/',
cssWeb: '/css/',
js: 'js/',
bower: '/bower_components',
},
less: {
options: {
compress: true,
cleancss: false,
sourceMap: false,
sourceMapBasepath: '/',
},
main: {
options: {
sourceMapFilename: '<%= dirs.css.webPath %>style.css.map',
compress: false,
},
files: {
"<%= dirs.css %>style.css": "<%= dirs.css %>style.less",
}
},
bootstrap: {
options: {
sourceMapFilename: '<%= dirs.css.webPath %>bootstrap.css.map',
},
files: {
"<%= dirs.css %>bootstrap.css": "<%= dirs.css %>bootstrap.less",
}
},
},
connect: {
livereload: {
options: {
port: 9001,
}
}
},
watch: {
options: {
livereload: 35728,
},
less: {
options: {
livereload: false,
},
files: ['<%= dirs.css %>**/*.less'],
tasks: ['less'],
},
css: {
files: ['<%= dirs.css %>style.css'],
tasks: [],
},
js: {
files: ['<%= dirs.js %>*.js'],
tasks: [],
},
}
});
grunt.loadNpmTasks('grunt-contrib-less');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-contrib-connect');
};