chore(gitignore): stop tracking styles.css (build artifact, ships via release assets)

styles.css is regenerated on every pnpm build / pnpm dev and minification differs run-to-run, so the tracked version was perpetually dirty in git status — same chronic noise pattern across cite-wide / image-gin / perplexed / metafetch. main.js was already gitignored for the same reason; this just brings styles.css onto the same footing.

Local devs still build styles.css for symlinked-vault testing. The GitHub Release attaches the freshly-built styles.css from the developer's filesystem at release time (gh release upload doesn't care about gitignore), so end users installing from the Community Plugins directory still receive it normally.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
mpstaton 2026-05-18 02:40:26 -05:00
parent 112449f301
commit 22028d5659
2 changed files with 3 additions and 1 deletions

3
.gitignore vendored
View file

@ -28,3 +28,6 @@ data.json
# Exclude macOS Finder (System Explorer) View States
.DS_Store
# Generated by esbuild — ships as a release asset, not from the repo.
styles.css

File diff suppressed because one or more lines are too long