Skip to content

Commit 7b79e63

Browse files
committed
unignore client/public/ship
1 parent 208f3b9 commit 7b79e63

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@ target/
66
# Node
77
node_modules/
88
dist/
9-
client/public/ship/
9+
# Ship WASM build artifacts (run.js is the loader, must be committed)
10+
client/public/ship/*
11+
!client/public/ship/run.js
1012
*.log
1113

1214
# Local dev logs

client/public/ship/run.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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);
6+
}
7+
});

client/src/commit_time.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2026-02-16T16:35:09.864Z
1+
2026-02-19T19:26:33.848Z

0 commit comments

Comments
 (0)