1

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?

1 Answers1

3

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.

VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250