mirror of
https://github.com/lossless-group/perplexed-plugin.git
synced 2026-07-22 06:49:50 +00:00
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>
33 lines
564 B
Text
33 lines
564 B
Text
# vscode
|
|
.vscode
|
|
|
|
# Environment
|
|
.env
|
|
|
|
# Intellij
|
|
*.iml
|
|
.idea
|
|
|
|
# npm
|
|
node_modules
|
|
|
|
# Don't include the compiled main.js file in the repo.
|
|
# They should be uploaded to GitHub releases instead.
|
|
main.js
|
|
|
|
# Exclude sourcemaps
|
|
*.map
|
|
|
|
# obsidian
|
|
data.json
|
|
|
|
# Logs (Obsidian dev console exports often contain plaintext API keys
|
|
# from the loaded data.json — never commit these)
|
|
.logs/
|
|
*.log
|
|
|
|
# Exclude macOS Finder (System Explorer) View States
|
|
.DS_Store
|
|
|
|
# Generated by esbuild — ships as a release asset, not from the repo.
|
|
styles.css
|