I use gulp to create an icon font out of *.svg files.
Should the generated font files (font.eot, font.ttf, font.woff) be gitignored?
I use gulp to create an icon font out of *.svg files.
Should the generated font files (font.eot, font.ttf, font.woff) be gitignored?
If they are part of your build, meaning they are generated in build/Release
, they are ignored by default, since a typical Node .gitignore
file ignores that folder.
More generally, if you can regenerate an artifact, it is worth considering ignoring it.