catlogjs
Version:
Static site generator, translate human readable text format(such as markdown) into html, with a lot of other functions
56 lines (36 loc) • 1.73 kB
Markdown
[][grunt] tasks to minify SVG using [SVGO](https://github.com/svg/svgo)
> SVG files, especially exported from various editors, usually contains a lot of redundant and useless information such as editor metadata, comments, hidden elements, default or non-optimal values and other stuff that can be safely removed or converted without affecting SVG rendering result.
If you haven't used [grunt][] before, be sure to check out the [Getting Started][] guide, as it explains how to create a [gruntfile][Getting Started] as well as install and use grunt plugins. Once you're familiar with that process, install this plugin with this command:
```sh
npm install --save-dev grunt-svgmin
```
Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:
```js
grunt.loadNpmTasks('grunt-svgmin');
```
[]: http://gruntjs.com
[]: https://github.com/gruntjs/grunt/wiki/Getting-started
See the [Gruntfile](Gruntfile.js) in this repo for a full example.
```javascript
grunt.initConfig({
svgmin: { // Task
options: { // Configuration that will be passed directly to SVGO
plugins: [{
removeViewBox: false
}]
},
dist: { // Target
files: { // Dictionary of files
'dist/figure.svg': 'app/figure.svg' // 'destination': 'source'
}
}
});
grunt.loadNpmTasks('grunt-svgmin');
grunt.registerTask('default', ['svgmin']);
```
MIT License • © [Sindre Sorhus](http://sindresorhus.com)