-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.npmignore
More file actions
65 lines (53 loc) · 849 Bytes
/
.npmignore
File metadata and controls
65 lines (53 loc) · 849 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
# Node modules
node_modules/
# Build outputs - 保留 dist 目录用于发布
# dist/
# Source files - 排除源码(因为已经打包到 dist)
src/
# Documentation source - 排除文档源码
docs/.vitepress/
docs/api/CHANGELOG.md
docs/api/DOCUMENTATION_SUMMARY.md
docs/api/INDEX.md
docs/VITEPRESS_*.md
docs/README_DOCS.md
# Test files
test/
coverage/
.nyc_output/
.jest/
# Config files (not needed for runtime)
config/
rollup.config.js
.eslintrc*
.prettierrc
.editorconfig
# IDE and Editor files
.vscode/
.idea/
*.swp
*.swo
*~
.DS_Store
Thumbs.db
# Logs
logs/
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Environment variables
.env*
# Temporary files
tmp/
temp/
.tmp/
.temp/
# Git files
.git/
.gitignore
.github/
# Lingma AI Assistant
.lingma/
# Package lock files
# package-lock.json (可选,根据发布策略决定)