-
Notifications
You must be signed in to change notification settings - Fork 113
/
Gruntfile.js
117 lines (105 loc) · 2.38 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
/*
* Grunt Script for Bootstrap Stylus
* http://gruntjs.com/
*/
'use strict';
module.exports = function(grunt) {
grunt.initConfig({
stylus: {
options: {
compress: false,
paths: ['stylus', __dirname],
urlfunc: 'embedurl', // use embedurl('test.png') in our code to trigger Data URI embedding
},
bootstrap: {
files: {
'dist/bootstrap.css': 'bootstrap/index.styl' // 1:1 compile
}
},
theme: {
files: {
'dist/theme.css': 'bootstrap/theme.styl' // 1:1 compile
}
}
},
watch: {
css: {
files: 'bootstrap/**/*.styl',
tasks: ['stylus'],
options: {
debounceDelay: 250
}
}
},
clean: {
dist: ["dist/*.css", "dist/*.js"]
},
autoprefixer: {
options: {
browsers: [
'Android 2.3',
'Android >= 4',
'Chrome >= 20',
'Firefox >= 24', // Firefox 24 is the latest ESR
'Explorer >= 8',
'iOS >= 6',
'Opera >= 12',
'Safari >= 6'
]
},
core: {
options: {
map: true
},
src: 'dist/bootstrap.css'
},
theme: {
options: {
map: true
},
src: 'dist/theme.css'
}
},
cssmin: {
bootstrap: {
files: {
"dist/bootstrap.min.css": ["dist/bootstrap.css"]
}
},
theme: {
files: {
"dist/theme.min.css": ["dist/theme.css"]
}
}
},
uglify: {
dist: {
files: {
'dist/bootstrap.min.js': [
'js/transition.js',
'js/alert.js',
'js/button.js',
'js/carousel.js',
'js/collapse.js',
'js/dropdown.js',
'js/modal.js',
'js/tooltip.js',
'js/popover.js',
'js/scrollspy.js',
'js/tab.js',
'js/affix.js'
]
}
}
},
});
// Load plugins here
grunt.loadNpmTasks('grunt-contrib-stylus');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-contrib-cssmin');
grunt.loadNpmTasks('grunt-contrib-clean');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.registerTask('dist', ['clean','stylus:bootstrap', 'cssmin:bootstrap', 'uglify']);
grunt.registerTask('theme', ['stylus:theme', 'cssmin:theme']);
grunt.registerTask('build', ['clean','stylus:bootstrap', 'stylus:theme', 'cssmin:bootstrap', 'cssmin:theme', 'uglify']);
};