svgmin creates two folders of minified files: .tmp/ and .tmp-fallbacks/. tmp/ is simply a minified set. tmp-fallbacks has color variables appended to the file name for grunticon to generate colorful fallbacks.
2.svgstore puts all of those into a single file (I changed it to dashicons.svg).
grunticon generates png fallbacks in three colors and a icons/preview.html file to check out all the icons at once. The template that generates that file is icons/preview-template.hbs. It also generates a bunch of CSS files with SVG data URIs and PNG data URIs.
Which turns out to be kind of a messy diff. :)
A few things are happening when you run
grunt
.svgmin
creates two folders of minified files:.tmp/
and.tmp-fallbacks/
.tmp/
is simply a minified set.tmp-fallbacks
has color variables appended to the file name for grunticon to generate colorful fallbacks. 2.svgstore
puts all of those into a single file (I changed it todashicons.svg
).grunticon
generates png fallbacks in three colors and aicons/preview.html
file to check out all the icons at once. The template that generates that file isicons/preview-template.hbs
. It also generates a bunch of CSS files with SVG data URIs and PNG data URIs.I also gitignored the .tmp folders.