Skip to content

Commit 08cca5a

Browse files
committed
Update .npmignore to refine ignored files and directories, enhancing project cleanliness and organization
1 parent 9d07841 commit 08cca5a

File tree

1 file changed

+31
-19
lines changed

1 file changed

+31
-19
lines changed

.npmignore

Lines changed: 31 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,39 @@
1-
# Source files
2-
src/
3-
tests/
4-
example_data/
5-
examples/
1+
# Dependencies
2+
node_modules/
3+
.pnp
4+
.pnp.js
65

7-
# Configuration files
8-
.eslintrc.cjs
9-
.prettierrc
6+
# Source control
7+
.git
108
.gitignore
11-
tsconfig.json
12-
build.js
13-
build.watch.js
149

15-
# Environment files
16-
.env
17-
.env.*
10+
# Environment and secrets
11+
.env*
12+
.secrets
13+
*.env
14+
*.secret
15+
*.key
1816

19-
# Build artifacts
17+
# Testing
2018
coverage/
21-
node_modules/
22-
.DS_Store
19+
__tests__/
20+
*.test.*
21+
*.spec.*
22+
23+
# Development
24+
.vscode/
25+
.idea/
26+
*.swp
27+
*.swo
2328

24-
# Debug logs
29+
# Logs and debugging
2530
npm-debug.log*
2631
yarn-debug.log*
27-
yarn-error.log*
32+
yarn-error.log*
33+
34+
# Build artifacts
35+
build/
36+
*.tsbuildinfo
37+
38+
# Misc
39+
.DS_Store

0 commit comments

Comments
 (0)