Skip to content

Commit 4b75e1e

Browse files
committed
chore: consolidate .gitignore patterns to root
Cleaned up .gitignore configuration by consolidating package-level patterns into the root .gitignore: - Changed `.claude/` to `**/.claude` for better coverage - Changed `.build-checkpoints` to `**/.build-checkpoints` - Removed redundant package-level .gitignore files where patterns are covered by root (cli-with-sentry, node-sea-builder, socket) - Simplified remaining package .gitignores to only contain package-specific patterns not covered by root This reduces duplication and ensures consistent ignore patterns across the monorepo.
1 parent 05345ca commit 4b75e1e

File tree

15 files changed

+2
-51
lines changed

15 files changed

+2
-51
lines changed

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
.DS_Store
22
._.DS_Store
33
Thumbs.db
4-
.claude/
54
/.env
65
/.env.local
76
/.pnpmfile.cjs
@@ -15,14 +14,15 @@ Thumbs.db
1514
/.yarnrc.yml
1615
*.log
1716
**/build/*.log
17+
**/.build-checkpoints
1818
**/.cache
19+
**/.claude
1920
**/coverage
2021
**/.type-coverage
2122
**/build
2223
!docs/build
2324
**/dist
2425
**/node_modules
25-
.build-checkpoints
2626
*.d.ts
2727
*.d.ts.map
2828
**/*.tmp

packages/cli-with-sentry/.gitignore

Lines changed: 0 additions & 2 deletions
This file was deleted.

packages/cli/.gitignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1 @@
1-
/coverage
2-
**/dist
31
external/

packages/minilm-builder/.gitignore

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1 @@
1-
# Build artifacts.
2-
build/
3-
4-
# Distribution artifacts.
5-
dist/
6-
7-
# Node modules.
8-
node_modules/
9-
10-
# Auto-generated Python scripts.
111
python/

packages/node-sea-builder/.gitignore

Lines changed: 0 additions & 8 deletions
This file was deleted.
Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,3 @@
1-
# Build artifacts (unstacked - contains node-source).
2-
build/
3-
4-
# Distribution artifacts (optimized binaries).
5-
dist/
6-
7-
# Node modules.
8-
node_modules/
9-
101
# WASM build artifacts.
112
wasm-bundle/pkg/
123
wasm-bundle/target/

packages/socket/.gitignore

Lines changed: 0 additions & 2 deletions
This file was deleted.
Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1 @@
1-
# Generated binaries.
21
bin/
3-
build/
Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1 @@
1-
# Generated binaries.
21
bin/
3-
build/
Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1 @@
1-
# Generated binaries.
21
bin/
3-
build/

0 commit comments

Comments
 (0)