74 lines
869 B
Plaintext
74 lines
869 B
Plaintext
# 测试文件和目录
|
||
test/
|
||
test-*.js
|
||
test.html
|
||
test-simplified.js
|
||
test-projects/
|
||
*.test.js
|
||
|
||
# 示例和演示文件
|
||
# EXAMPLES.md (保留在发布包中,因为用户可能需要)
|
||
react-iframe-test.html
|
||
simple-react-app.html
|
||
simplified-test.html
|
||
server.js
|
||
start-test.js
|
||
test-cli.js
|
||
test-framework.js
|
||
test-framework-simple.js
|
||
test-full-system.js
|
||
|
||
# 日志文件
|
||
*.log
|
||
server.log
|
||
npm-debug.log*
|
||
yarn-debug.log*
|
||
yarn-error.log*
|
||
|
||
# 依赖
|
||
node_modules/
|
||
.pnp
|
||
.pnp.js
|
||
|
||
# 构建输出
|
||
dist/
|
||
build/
|
||
.next/
|
||
out/
|
||
|
||
# 缓存
|
||
.cache/
|
||
.npm/
|
||
.parcel-cache/
|
||
.eslintcache
|
||
|
||
# 环境配置
|
||
.env
|
||
.env.local
|
||
.env*.local
|
||
|
||
# IDE 配置
|
||
.vscode/
|
||
.idea/
|
||
*.swp
|
||
*.swo
|
||
*~
|
||
|
||
# 系统文件
|
||
.DS_Store
|
||
Thumbs.db
|
||
*.tmp
|
||
|
||
# Git
|
||
.git/
|
||
.gitignore
|
||
.gitattributes
|
||
|
||
# CI/CD
|
||
.github/
|
||
.gitlab-ci.yml
|
||
.travis.yml
|
||
|
||
# 文档(除了 package.json 中 files 指定的)
|
||
# 注意:README.md 等会自动包含
|