-
Notifications
You must be signed in to change notification settings - Fork 11
/
Gruntfile.js
62 lines (53 loc) · 1.36 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
module.exports = function(grunt) {
grunt.initConfig({
myth: {
dist: {
files: {
'css/style.css':'css/sources/style.css',
'css/themes/default.css':'css/sources/themes/default.css',
'css/themes/xmas.css':'css/sources/themes/xmas.css',
'css/themes/black.css':'css/sources/themes/black.css',
}
}
},
cmq: {
dist: {
files: {
'css/style.css':'css/style.css',
'css/themes/default.css':'css/themes/default.css',
'css/themes/xmas.css':'css/themes/xmas.css',
'css/themes/black.css':'css/themes/black.css',
}
},
},
//et on minify le css
cssmin: {
dist: {
files: {'css/style.min.css':'css/style.css', }
},
theme: {
files: {'css/themes/default.min.css':'css/themes/default.css'}
},
xmas: {
files: {'css/themes/xmas.min.css':'css/themes/xmas.css'}
},
black: {
files: {'css/themes/black.min.css':'css/themes/black.css'}
},
},
watch: {
scripts: {
files: ['css/**/*.css','css/*.css'],
tasks: ['myth','cmq','cssmin'],
options: {
spawn: false,
},
},
},
})
grunt.loadNpmTasks('grunt-myth');
grunt.loadNpmTasks('grunt-combine-media-queries');
grunt.loadNpmTasks('grunt-css');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.registerTask('default', ['myth','cmq','cssmin'])
}