-
Notifications
You must be signed in to change notification settings - Fork 2
/
gruntfile.js
94 lines (84 loc) · 1.79 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
module.exports = function ( grunt ) {
'use strict';
// Define the configuration
grunt.initConfig({
// Watch files and process the above tasks
watch: {
options: {
livereload: false
},
grunt: {
files: [
'Gruntfile.js'
],
options: {
reload: true
}
},
sass: {
files: [
'src/**/*.scss'
],
tasks: [
'sass',
'autoprefixer'
]
}
},
// Clear files and folders
clean: {
all: [ 'dist/*' ]
},
// Compile Sass files to CSS
sass: {
options: {
sourceMap: true,
outputStyle: 'compressed'
},
dev: {
files: {
'dist/Milligrid.css': 'src/**/Milligrid.scss',
'dist/MilligridExtended.css': 'src/**/MilligridExtended.scss'
}
}
},
// Lint Sass files.
sasslint: {
options: {
configFile: '.sass-lint.yml'
},
target: ['src/\*.scss']
},
// Parse CSS and add vendor-prefixed CSS properties using the Can I Use database.
autoprefixer: {
default: {
options: {
browsers: [
'last 1 versions'
],
map: true
},
files: {
'dist/Milligrid.css': 'dist/Milligrid.css',
'dist/MilligridExtended.css': 'dist/MilligridExtended.css'
}
}
}
});
// Default task
grunt.registerTask( 'default', [
'build',
'watch'
]);
// Build task
grunt.registerTask( 'build', [
'clean',
'sass',
'sasslint',
'autoprefixer'
]);
// Automatically loading Grunt tasks
require( 'load-grunt-tasks' )( grunt );
// Display the elapsed execution time of Grunt tasks
require( 'time-grunt' )( grunt );
};