-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.npmignore
More file actions
85 lines (72 loc) · 945 Bytes
/
.npmignore
File metadata and controls
85 lines (72 loc) · 945 Bytes
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
# Rust source files (not needed in npm package)
src/
Cargo.toml
Cargo.lock
scripts/
tests/
dist/
# Development files
.gitignore
.npmignore
.github/
.vscode/
.idea/
# Development dependencies and scripts
node_modules/
package-lock.json
yarn.lock
pnpm-lock.yaml
bun.lockb
bun.lock
# Build tools and configs
webpack.config.js
rollup.config.js
vite.config.js
jest.config.js
.eslintrc.*
.prettierrc.*
.babelrc.*
# Test files and examples
test/
tests/
__tests__/
*.test.js
*.test.ts
*.spec.js
*.spec.ts
examples/
examples-output/
examples-output-js/
test-output/
# Documentation source
docs/
*.md
!README.md
# CI/CD
.github/
.gitlab-ci.yml
.travis.yml
.circleci/
# Development scripts and tools
scripts/
tools/
dev/
# Temporary files
*.tmp
*.temp
.cache/
# OS files
.DS_Store
Thumbs.db
# Logs
*.log
npm-debug.log*
# Environment files
.env*
!.env.example
# Coverage reports
coverage/
.nyc_output/
# Rust build artifacts
target/
**/*.rs.bk