-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.npmignore
47 lines (38 loc) · 997 Bytes
/
.npmignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# .npmignore - Files and directories to exclude from the npm package
# Node modules - Exclude installed dependencies
node_modules/
# Build directories - Exclude build and public output directories
public/
dist/
# Build configuration files - Exclude build config files
webpack.config.js
webpack.config.ts
# OS-specific files - Exclude system-specific files
.DS_Store # macOS Finder metadata
*/.DS_Store # .DS_Store in any subdirectory
# Package metadata - Exclude unnecessary package metadata files
dist/package.json
# Logs and temporary files - Exclude log files and temporary directories
npm-debug.log*
yarn-debug.log*
yarn-error.log*
*.log
*.tmp
# IDE and editor configurations - Exclude IDE-specific settings and files
.vscode/
.idea/
*.swp
*.swo
# Test and documentation files - Exclude test files and documentation
tests/
*.spec.js
*.spec.ts
*.test.js
*.test.ts
coverage/
docs/
*.md
# Ignore all dotfiles (except for specific ones needed)
.*
!.npmignore
!.gitignore