forked from MarcDiethelm/such.less
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGruntfile.js
101 lines (75 loc) · 2.64 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
module.exports = function(grunt) {
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Define grunt config
grunt.initConfig({
pkg : grunt.file.readJSON('package.json')
,staticBaseUriCss : '/static'
////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Output destinations
,buildPath : 'static/build'
,tmpPath : '<%=buildPath%>/tmp'
,destCss : '<%=buildPath%>'
,fileName : 'styles'
////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Define source file patterns
,sources: {
styles: [
'lib/*.{less,css}'
,'*.less'
]
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Configure Grunt plugins
,less_imports: {
all: {
options: {}
,src : '<%=sources.styles%>'
,dest : '<%=tmpPath%>/@import.less'
}
}
,less: {
options: {
banner : "@static-base: '<%=staticBaseUriCss%>';"
,imports: {
reference : ['../../lib/reference/*.less']
}
},
plain: {
src : '<%=tmpPath%>/@import.less'
,dest : '<%=destCss%>/<%=fileName%>.css'
},
min: {
options: {
cleancss : true
}
,src : '<%=tmpPath%>/@import.less'
,dest : '<%=destCss%>/<%=fileName%>.min.css'
}
}
,watch: {
base: {
files : ['<%=sources.styles%>', 'lib/reference.less']
,tasks : ['build-css']
}
,gruntfile: {
files : ['Gruntfile.js']
,tasks : 'default'
}
}
});
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Define build tasks // use actual task name (first part before colon)!
grunt.registerTask('build-css', ['less_imports:all', 'less']);
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Define the build pipes
var task = [
'build-css'
,'watch'
];
grunt.registerTask('default', task);
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Load grunt plugins
grunt.loadNpmTasks('grunt-less-imports');
grunt.loadNpmTasks('assemble-less');
grunt.loadNpmTasks('grunt-contrib-watch');
};