-
Notifications
You must be signed in to change notification settings - Fork 4
/
Gruntfile.js
193 lines (165 loc) · 4.95 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
module.exports = function(grunt) {
// Theme path
$themepath = '';
// 1. Configuration
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
// Concatenate JS
concat: {
dist: {
src: [
'js/modernizr.custom.14715.js', // Modernizr
'js/script.js' // Script
],
dest: 'js/build/production.js',
}
},
// Uglify JS
uglify: {
build: {
src: 'js/build/production.js',
dest: 'js/build/production.min.js'
}
},
// Image optimization
imageoptim: {
myTask: {
options: {
jpegMini: false,
imageAlpha: true,
quitAfter: true
},
src: ['images']
}
},
// Compass & SASS
compass: {
options: {
bundleExec: true,
relativeAssets: true,
httpPath: $themepath,
cssDir: 'css',
sassDir: 'sass',
imagesDir: 'images',
javascriptsDir: 'js',
// fontsDir: 'fonts',
assetCacheBuster: 'none',
require: [
'breakpoint',
'sass-globbing',
'singularitygs',
'rgbapng',
'toolkit',
]
},
// Production
prod: {
options: {
environment: 'production',
outputStyle: 'compressed',
force: true,
}
},
},
// Minimize SVGs
svgmin: {
options: {
plugins: [
{ removeViewBox: false },
{ removeUselessStrokeAndFill: false }
]
},
all: { // Target
files: [{ // Dictionary of files
expand: true, // Enable dynamic expansion.
cwd: 'images/', // Src matches are relative to this path.
src: ['**/*.svg'], // Actual pattern(s) to match.
dest: 'images/', // Destination path prefix.
ext: '.svg' // Dest filepaths will have this extension.
}]
}
},
// SVG Sprites
"svg-sprites": {
"icons": {
options: {
spriteElementPath: "images/icons/svg",
spritePath: "images",
cssPath: "sass",
cssSuffix: "scss",
cssPrefix: "_sprite",
cssPngPrefix: ".no-svg",
prefix: "icon",
unit: 20
}
}
},
// PNG Sprites
sprite:{
icons: {
src: 'images/icons/*.png',
destImg: 'images/sprite-icons.png',
destCSS: 'sass/_sprite-icons.scss',
// 'padding': 20,
},
// navigation: {
// src: 'images/nav/*.png',
// destImg: 'images/sprite-nav.png',
// destCSS: 'sass/_sprite-nav.scss',
// 'padding': 20,
// },
},
// Watch
watch: {
// Live Reload
options: {
livereload: true,
},
// CSS
css: {
files: [
'**/*.scss',
],
tasks: ['compass'],
options: {
spawn: false,
},
},
// Javascript
scripts: {
files: ['js/*.js'],
tasks: ['concat', 'uglify'],
options: {
spawn: false,
},
},
}
});
// 1. Plugins
// Watch
grunt.loadNpmTasks('grunt-contrib-watch');
// JS - Concatinate
grunt.loadNpmTasks('grunt-contrib-concat');
// JS - Uglify
grunt.loadNpmTasks('grunt-contrib-uglify');
// SASS
grunt.loadNpmTasks('grunt-contrib-compass');
// SVG min
grunt.loadNpmTasks('grunt-svgmin');
// SVG sprites
grunt.loadNpmTasks('grunt-dr-svg-sprites');
// PNG sprites
grunt.loadNpmTasks('grunt-spritesmith');
// Image compression
grunt.loadNpmTasks('grunt-imageoptim');
// 2. Grunt tasks
grunt.registerTask('default', [
'concat',
'uglify',
'compass',
'svgmin',
'svg-sprites',
'sprite',
'imageoptim',
]);
};