forked from dalibo/temboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
61 lines (60 loc) · 1.47 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
module.exports = function(grunt) {
grunt.initConfig({
sass: {
options: {
sourceMap: true,
includePaths: ['node_modules/bootstrap/scss']
},
// this is the "dev" Sass config used with "grunt watch" command
dev: {
options: {
outputStyle: 'expanded'
},
files: {
'temboardui/static/css/temboard.css': 'temboardui/static/sass/temboard.scss'
}
},
dist: {
options: {
outputStyle: 'compressed'
},
files: {
'temboardui/static/css/temboard.css': 'temboardui/static/sass/temboard.scss'
}
}
},
postcss: {
options: {
map: true,
processors: require('autoprefixer')({browsers: 'last 2 versions'})
},
dist: {
src: 'temboardui/static/css/temboard.css'
}
},
copy: {
bootstrapjs: {
expand: true,
cwd: 'node_modules/bootstrap-sass/assets/javascripts/',
src: ['bootstrap.min.js'],
dest: 'temboardui/static/js/'
}
},
// configure the "grunt watch" task
watch: {
sass: {
files: 'temboardui/static/sass/*.scss',
tasks: ['sass:dist']
}
}
});
grunt.loadNpmTasks('grunt-sass');
grunt.loadNpmTasks('grunt-postcss');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.registerTask('bootstrap', [
'copy:bootstrapjs',
'sass:dist',
'postcss:dist'
]);
};