File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # Build System Artifacts
2+
3+ # MoonBit default build output directory.
4+ _build /
5+ # Local MoonBit package cache directory.
6+ .mooncakes /
7+
8+ # Coverage and Test Artifacts
9+
10+ # Coverage reports generated by MoonBit tooling.
11+ moonbit-coverage- * .txt
12+ # Coverage output directory used by coverage commands.
13+ _coverage /
14+ # Bisect runtime coverage data file.
15+ bisect.coverage
16+
17+ # JavaScript Target Artifacts
18+
19+ # Uncomment if generated JavaScript should be ignored.
20+ # *.js
21+ # Source map files generated for JavaScript output.
22+ * .js.map
23+ # Node.js dependencies used in JS target workflows.
24+ node_modules /
25+
26+ # WebAssembly Target Artifacts
27+
28+ # Compiled WebAssembly binaries.
29+ * .wasm
30+ # WebAssembly text format output.
31+ * .wat
32+
33+ # MoonBit Pilot / Agent Artifacts
34+
35+ # MoonBit agent runtime state and temporary files.
36+ .moonagent /
37+
38+ # LLVM Backend Artifacts
39+
40+ # LLVM textual intermediate representation (IR) files.
41+ * .ll
42+ # LLVM bitcode files.
43+ * .bc
44+ # Native object files from LLVM/native compilation.
45+ * .o
46+ # Generated assembly source files.
47+ * .s
48+ # Default executable output name on Unix-like systems.
49+ * .out
50+ # Native executable output on Windows.
51+ * .exe
52+ # macOS debug symbol bundles.
53+ * .dSYM /
You can’t perform that action at this time.
0 commit comments