grunt-svgstore
Merge SVGs from a folder.
Why?
Because Chris Coyer asked.
Getting Started
This plugin requires Grunt ~0.4.2
If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:
npm install grunt-svgstore --save-dev
Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:
grunt.loadNpmTasks('grunt-svgstore');
The "svgstore" task
Overview
In your project's Gruntfile, add a section named svgstore
to the data object passed into grunt.initConfig()
.
grunt.initConfig({
svgstore: {
options: {
prefix : 'icon-',
svg: {
viewBox : '0 0 100 100'
}
},
your_target: {
},
},
});
Options
options.prefix
Type: String
Default value: ''
A string value that is used to prefix each filename to generate the id.
options.svg
Type: Object
Default value: {}
An object that is used to generate attributes for the resulting svg
file.
{
viewBox: '0 0 100 100'
}
will result in:
<svg viewBox="0 0 100 100">
[...]
options.formatting (since 0.0.4)
Type: Object
or boolean
Default value: false
Formatting options for generated code.
To format the generated HTML, set formatting
with options like: {indent_size : 2}
, which in context looks like:
default: {
options: {
formatting : {
indent_size : 2
}
}
See js-beautify for more options.
options.includedemo (since 0.1.0)
Type: boolean
Default value: false
This will include a demo HTML (named like destName + -demo.html
) from where you can copy your <use>
blocks.
Usage Examples
This example will merge all elements from the svgs
folder into the <defs>
-Block of the dest.svg
. You can use that SVG in HTML like:
[...]
<svg><use xlink:href="#filename" /></svg>
grunt.initConfig({
svgstore: {
options: {},
default : {
files: {
'dest/dest.svg': ['svgs/*.svg'],
},
},
},
});
Contributing
In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using Grunt.
Release History
- 0.1.0 Always add
xmlns
namspace. Added the includedemo
option. Fixed Issues #20, #19, #18 - 0.0.4 Fixed issue with referencing ids with
url()
(fix #12) - 0.0.3 Added
options.formatting
to format svg via js-beautify - 0.0.2 Fixed npm dependencies
- 0.0.1 Inital release