-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy path.pkgignore
More file actions
77 lines (65 loc) · 1.18 KB
/
.pkgignore
File metadata and controls
77 lines (65 loc) · 1.18 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
# 开发和测试文件
test.js
quick-test.js
build.js
start.js
test-video.html
# 文档文件
README.md
LICENSE
docs/
# Git 相关
.gitignore
.git/
# Node.js 相关
node_modules/.cache/
node_modules/*/test/
node_modules/*/tests/
node_modules/*/.nyc_output/
node_modules/*/coverage/
node_modules/*/docs/
node_modules/*/doc/
node_modules/*/examples/
node_modules/*/example/
node_modules/*/benchmark/
node_modules/*/benchmarks/
# Puppeteer 相关 - 排除大部分 Chromium 文件
node_modules/puppeteer/.local-chromium/
node_modules/puppeteer/lib/esm/
node_modules/puppeteer/src/
node_modules/puppeteer/test/
node_modules/puppeteer/docs/
# 开发环境专用模块
node_modules/pino-pretty/
# TypeScript 定义文件
node_modules/@types/
*.d.ts
# 日志文件
*.log
logs/
# 临时文件
*.tmp
*.temp
.DS_Store
Thumbs.db
# 开发工具配置
.vscode/
.idea/
*.swp
*.swo
# 构建输出
dist/
build/
# 包管理器文件
package-lock.json
yarn.lock
pnpm-lock.yaml
# 其他大型依赖的非必要部分
node_modules/*/CHANGELOG.md
node_modules/*/HISTORY.md
node_modules/*/AUTHORS
node_modules/*/CONTRIBUTORS
node_modules/*/*.md
node_modules/*/*.txt
node_modules/*/LICENSE*
node_modules/*/LICENCE*