gruntfile.js
1.53 KB
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
var banner = '/* <%= pkg.name %> */\n';
module.exports = function(grunt) {
require('matchdep').filterDev('grunt-*').forEach(grunt.loadNpmTasks);
// Project configuration.
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
svgstore: {
options: {
prefix: 'shape-' // This will prefix each <g> ID
},
default: {
files: {
'img/svg-defs.svg': ['img/svg/*.svg']
}
}
},
svgmin: {
options: {
plugins: [
{
removeViewBox: false
},
{
removeUselessStrokeAndFill: false
}
]
},
dist: {
expand: true,
cwd: 'src/svg',
src: ['*.svg'],
dest: 'img/svg',
ext: '.svg'
}
},
svg2png: {
all: {
// specify files in array format with multiple src-dest mapping
files: [
// rasterize all SVG files in "img" and its subdirectories to "img/png"
{
cwd: 'src/',
src: ['svg/*.svg'],
dest: 'img/png/'
}
]
}
}
});
grunt.registerTask('buildsvg', ['svgmin'/*, 'svg2png'*//*, 'svgstore', 'svg2string'*/]);
};