-
Notifications
You must be signed in to change notification settings - Fork 29
/
Gruntfile.js
72 lines (70 loc) · 2 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
module.exports = function(grunt) {
require('load-grunt-tasks')(grunt);
var path = 'sgds-govtech';
grunt.initConfig({
clean: {
build: {
src: ['sgds-govtech/{css,fonts,js}', 'sgds-govtech/sass/**/*','!sgds-govtech/sass/sgds.scss']
},
zip:{
src:['sgds-govtech.zip']
}
},
cssmin: {
target: {
files: [{
expand: true,
cwd: '_site/assets/css',
src: ['*.css', '!*.min.css'],
dest: 'sgds-govtech/css',
ext: '.css'
}]
}
},
copy: {
sass: {
expand: true,
cwd: '_sass',
src: ['**', '!custom.scss'],
dest: path + '/sass'
},
fonts: {
expand: true,
cwd: 'assets/fonts',
src: '**',
dest: path + '/fonts'
},
css: {
expand: true,
cwd: 'assets/css',
src: '**',
dest: path + '/css'
},
js: {
expand: true,
cwd: 'assets/js',
src: 'sgds.js',
dest: path + '/js'
},
zip:{
expand:true,
cwd:'',
src:'sgds-govtech.zip',
dest: 'assets/downloads/'
}
},
compress: {
main: {
options: {
archive: 'sgds-govtech.zip'
},
expand: true,
cwd: 'sgds-govtech',
src: ['js/*', 'css/*'],
dest: 'sgds'
}
}
});
grunt.registerTask('sgds', ['clean:build','cssmin','copy:sass', 'copy:fonts','copy:js','compress:main','copy:zip','clean:zip']);
grunt.registerTask('sgds-clean', ['clean:build']);
};