-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
53 lines (44 loc) · 989 Bytes
/
.gitignore
File metadata and controls
53 lines (44 loc) · 989 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
# Dependencies
node_modules/
package-lock.json
# Build outputs
dist/
build.log
*.log
logs/
# IDE/editor files
.idea/
.vscode/
*.swp
*.swo
*~
.aider*
# Editor backup/swap files
*.kate-swp
*.bak
* back*
# Planning docs (moved to docs/planning/)
.kimi/
# Verification artifacts
verification/
# Vendor source (cloned by build scripts)
vendor/
# OS files
.DS_Store
Thumbs.db
# Emscripten build artifacts (generated by scripts/build-wasm.sh)
/public/worklets/openmpt-native.js
/public/worklets/openmpt-native.wasm
/public/worklets/openmpt-native.aw.js
/dist/worklets/openmpt-native.js
/dist/worklets/openmpt-native.wasm
/dist/worklets/openmpt-native.aw.js
# openmpt-worklet.js and libopenmpt-audioworklet.js are tracked JS files
# (the C++ WASM build outputs .wasm and .aw.js — those remain ignored)
/public/worklets/openmpt-worklet.wasm
/public/worklets/openmpt-worklet.aw.js
/dist/worklets/openmpt-worklet.wasm
/dist/worklets/openmpt-worklet.aw.js
# Local env files
.env
.env.local