We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 208f3b9 commit 7b79e63Copy full SHA for 7b79e63
.gitignore
@@ -6,7 +6,9 @@ target/
6
# Node
7
node_modules/
8
dist/
9
-client/public/ship/
+# Ship WASM build artifacts (run.js is the loader, must be committed)
10
+client/public/ship/*
11
+!client/public/ship/run.js
12
*.log
13
14
# Local dev logs
client/public/ship/run.js
@@ -0,0 +1,7 @@
1
+import init from './ship.js';
2
+
3
+init().catch((error) => {
4
+ if (!error.message.startsWith("Using exceptions for control flow")) {
5
+ console.error(error);
+ }
+});
client/src/commit_time.txt
@@ -1 +1 @@
-2026-02-16T16:35:09.864Z
+2026-02-19T19:26:33.848Z
0 commit comments