mirror of
https://github.com/taskgenius/taskgenius-plugin.git
synced 2026-07-22 06:40:25 +00:00
- Add pnpm-workspace.yaml for monorepo configuration - Move esbuild-plugin-inline-worker to workspace package - Update package.json to use workspace:* references - Add workspace-related entries to .gitignore
55 lines
663 B
Text
55 lines
663 B
Text
# vscode
|
|
.vscode
|
|
|
|
# Intellij
|
|
*.iml
|
|
.idea
|
|
|
|
# Zip
|
|
*.zip
|
|
*.rar
|
|
|
|
# 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
|
|
|
|
# Exclude macOS Finder (System Explorer) View States
|
|
.DS_Store
|
|
|
|
styles.css
|
|
|
|
package-lock.json
|
|
|
|
# env
|
|
.env
|
|
|
|
# translations
|
|
translation-templates
|
|
._data.json
|
|
|
|
CLAUDE.md
|
|
.kiro
|
|
.claude
|
|
.codex
|
|
|
|
dist
|
|
dist/*
|
|
|
|
# Workspace packages build artifacts
|
|
packages/*/dist
|
|
packages/*/node_modules
|
|
|
|
# Keep calendar package .git for independent management
|
|
!packages/calendar/.git
|
|
|
|
# Documentation site (separate repository)
|
|
docs-site
|