-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy path.npmignore
More file actions
63 lines (50 loc) · 1.15 KB
/
Copy path.npmignore
File metadata and controls
63 lines (50 loc) · 1.15 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# NPM Package Exclusions
# Files to exclude from npm publish (even if committed to git)
# Internal workflow development files
.claude/commands/internal/
.claude/commands/release.md
.claude/commands/validate.md
.claude/commands/meta/announce-release.md
.claude/skills/x-announcement/
.spec-flow/testing/
# Archived files (deprecated/legacy)
.claude/commands/archive/
.spec-flow/memory/archive/
# Local settings and overrides
.claude/settings.local.json
# Development and testing
*.test.js
*.spec.js
.vscode/
.idea/
# Git files
.gitignore
.gitattributes
# CI/CD (keep workflows but exclude run artifacts)
.github/workflows/*.log
# Documentation for contributors (keep user docs)
CONTRIBUTING.md
CODE_OF_CONDUCT.md
# Temporary files
*.tmp
*.log
*.bak
# OS files
.DS_Store
Thumbs.db
# Editor files
*.swp
*.swo
*~
# Local test directories
test-projects/
examples/local/
# Build artifacts that shouldn't be published
# Note: dist/ is NOT excluded - it contains the package distribution files
# dist/ <- Removed: dist is the primary package content, included via package.json "files"
build/
coverage/
# Package manager files
package-lock.json
yarn.lock
pnpm-lock.yaml