grunt-svgo
v0.1.0
Published
Optimize SVG files with SVGO.
Downloads
184
Readme
grunt-svgo
About
Optimize SVG files with SVGO.
Install
$ npm install --save-dev grunt-svgo
Usage
module.exports = function (grunt) {
grunt.initConfig({
svgo: {
static: {
files: {
'dist/foo.svg': 'src/foo.svg',
'dist/bar.svgg': 'src/bar.svg'
}
},
dynamic: {
files: [{
expand: true,
cwd: 'src/',
src: ['**/*.{svg}'],
dest: 'dist/'
}]
}
}
});
grunt.loadNpmTasks('grunt-svgo');
};
License
MIT