-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
58 lines (51 loc) · 1.46 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
module.exports = function (grunt) {
'use strict';
grunt.initConfig({
pkg: grunt.file.readJSON('./package.json'),
svgmin: {
options: {
plugins: [
{ removeDimensions: true }
]
},
dist: { // Target
files: [{ // Dictionary of files
expand: true, // Enable dynamic expansion.
cwd: 'source/assets/', // Src matches are relative to this path.
src: ['**/*.svg'], // Actual pattern(s) to match.
dest: 'source/assets/', // Destination path prefix.
ext: '.min.svg' // Dest filepaths will have this extension.
// ie: optimise img/src/branding/logo.svg and store it in img/branding/logo.min.svg
}]
}
},
clean: {
all: ['source/assets/grunticon/*']
},
grunticon: {
icons: {
files: [
{
expand: true,
cwd: 'source/assets/grunticon/dev',
src: ['*.svg', '*.png'],
dest: "source/assets/grunticon/production"
}
],
options: {
enhanceSVG: true
}
}
},
});
/* load every plugin in package.json */
grunt.loadNpmTasks('grunt-contrib-clean');
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.loadNpmTasks('grunt-svgmin');
grunt.loadNpmTasks('grunt-grunticon');
/* grunt tasks */
grunt.registerTask('default', [
'svgmin',
'grunticon:icons'
]);
};