forked from liferay/alloy-bootstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGruntfile.js
65 lines (58 loc) · 2.02 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
/*
* Copyright (c) 2013, Liferay Inc. All rights reserved.
* Code licensed under the BSD License:
* https://github.com/liferay/alloy-ui/blob/master/LICENSE.md
*
* @author Zeno Rocha <[email protected]>
* @author Eduardo Lundgren <[email protected]>
*/
// -- Config -------------------------------------------------------------------
module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
compass: {
dist: {
options: {
sassDir: 'lib',
cssDir: ''
}
}
},
copy: {
dist: {
files: [
{
src: 'bootstrap.css',
dest: 'bootstrap-<%= pkg["version"] %>.css'
},
{
src: 'responsive.css',
dest: 'bootstrap-responsive-<%= pkg["version"] %>.css'
}
]
}
},
clean: {
build: [
'bootstrap-<%= pkg["version"] %>.css', 'bootstrap-<%= pkg["version"] %>.min.css',
'bootstrap-responsive-<%= pkg["version"] %>.css', 'bootstrap-responsive-<%= pkg["version"] %>.min.css'
],
dist: [
'bootstrap.css', 'responsive.css',
]
},
cssmin: {
dist: {
files: {
'bootstrap-<%= pkg["version"] %>.min.css': ['bootstrap-<%= pkg["version"] %>.css'],
'bootstrap-responsive-<%= pkg["version"] %>.min.css': ['bootstrap-responsive-<%= pkg["version"] %>.css']
}
}
}
});
grunt.loadNpmTasks('grunt-contrib-compass');
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.loadNpmTasks('grunt-contrib-clean');
grunt.loadNpmTasks('grunt-contrib-cssmin');
grunt.registerTask('build', ['clean:build', 'compass', 'copy', 'clean:dist', 'cssmin']);
};