建立前端与 Tauri 桌面端的首个版本提交,包含核心编辑器、项目文件读写、测试与构建配置。 补充 Git 忽略规则和换行规范,排除依赖、构建产物、本地运行日志与临时验证文件,方便在其他电脑继续开发。
39 lines
460 B
Plaintext
39 lines
460 B
Plaintext
# Dependencies
|
|
node_modules/
|
|
|
|
# Frontend build output
|
|
dist/
|
|
dist-ssr/
|
|
|
|
# Tauri and Rust build output
|
|
src-tauri/target/
|
|
|
|
# Local run artifacts and smoke-test scratch data
|
|
artifacts/
|
|
|
|
# Logs
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
|
|
# Environment files
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# Editor and OS files
|
|
.vscode/
|
|
.idea/
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Test and coverage output
|
|
coverage/
|
|
.nyc_output/
|
|
|
|
# Package manager caches
|
|
.npm/
|
|
.pnpm-store/
|