-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.npmignore
More file actions
92 lines (77 loc) · 1.2 KB
/
.npmignore
File metadata and controls
92 lines (77 loc) · 1.2 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
# Source files (TypeScript source is not needed in published package)
# 源文件(发布的包中不需要 TypeScript 源码)
src/
# Test files
# 测试文件
test/
*.test.js
*.test.ts
__tests__/
# Development files
# 开发文件
examples/
.prettierrc.json
.cursorignore
jest.config.js
tsconfig.json
# Version control
# 版本控制
.git/
.gitignore
# IDE and editor files
# IDE 和编辑器文件
.vscode/
.idea/
*.swp
*.swo
*~
# OS generated files
# 操作系统生成的文件
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
# Logs
# 日志文件
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Runtime data
# 运行时数据
pids
*.pid
*.seed
*.pid.lock
# Coverage directory used by tools like istanbul
# 覆盖率目录
coverage/
.nyc_output
# Dependency directories
# 依赖目录
node_modules/
# Optional npm cache directory
# npm 缓存目录
.npm
# Optional REPL history
# REPL 历史
.node_repl_history
# Output of 'npm pack'
# npm pack 的输出
*.tgz
# Yarn Integrity file
# Yarn 完整性文件
.yarn-integrity
# dotenv environment variables file
# dotenv 环境变量文件
.env
.env.test
.env.production
# Temporary folders
# 临时文件夹
tmp/
temp/