.gitignore 680 B

1234567891011121314151617181920212223242526
  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. webextension.go
  11. webext/node_modules
  12. webext/dist/*
  13. dist
  14. *.xpi
  15. # This is because of an odd permissions quirk on Github Actions. I can't seem to find a
  16. # way to delete these files in CI, so let's just ignore them. Otherwise Goreleaser complains
  17. # about a dirty working tree.
  18. /pkg
  19. /bin
  20. # Goreleaser needs to upload the webextension as an extra file in the release. But it doesn't
  21. # like Git to be in a dirty state. Also Goreleaser is run at PWD ./interfacer, so we can't
  22. # reference the webextension with something like ../webext/...
  23. interfacer/browsh-*.xpi