Skip to content

Commit 0953e80

Browse files
committed
docs(gitignore): document cli-with-sentry dist exclusion
Add comment explaining that packages/cli-with-sentry/dist/ is gitignored as ephemeral esbuild output, consistent with the packages/cli/dist/ pattern. The root .gitignore already has comprehensive patterns: - **/build (workspace + archive) - **/coverage (test coverage) - **/html (generated docs) - **/dist is NOT global because dist/ contains blessed releases Individual packages use local .gitignore files to exclude their ephemeral dist/ output (CLI packages) while allowing tracked dist/ in other packages (binary releases, WASM artifacts, models).
1 parent 53e8dab commit 0953e80

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ Thumbs.db
4343
# Build artifacts: build/ = gitignored (workspace + archive), dist/ = tracked (blessed releases).
4444
# Exceptions:
4545
# - packages/cli/dist/ is Rollup output (ephemeral), gitignored by packages/cli/.gitignore
46+
# - packages/cli-with-sentry/dist/ is esbuild output (ephemeral), gitignored by packages/cli-with-sentry/.gitignore
4647
# - !/docs/build allows tracking docs/build/ (documentation directory, not build artifacts)
4748
# - Note: New files in docs/build/ require `git add -f` due to **/build pattern
4849

0 commit comments

Comments
 (0)