.gitignore 719 B

12345678910111213141516171819202122232425262728
  1. build/
  2. *.log
  3. *.out
  4. node_modules
  5. interfacer/target
  6. interfacer/vendor
  7. interfacer/dist
  8. interfacer/interfacer
  9. interfacer/browsh
  10. interfacer/debug
  11. webextension.go
  12. webext/node_modules
  13. webext/dist/*
  14. webext/manifest.json~
  15. dist
  16. *.xpi
  17. # This is because of an odd permissions quirk on Github Actions. I can't seem to find a
  18. # way to delete these files in CI, so let's just ignore them. Otherwise Goreleaser complains
  19. # about a dirty working tree.
  20. /pkg
  21. /bin
  22. # Goreleaser needs to upload the webextension as an extra file in the release. But it doesn't
  23. # like Git to be in a dirty state. Also Goreleaser is run at PWD ./interfacer, so we can't
  24. # reference the webextension with something like ../webext/...
  25. interfacer/browsh-*.xpi