@schoolai/shipyard 3.6.0 → 3.7.0-rc.20260511.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (28) hide show
  1. package/dist/{chunk-DBAPXL44.js → chunk-MWH2XTEM.js} +2 -2
  2. package/dist/{chunk-DBAPXL44.js.map → chunk-MWH2XTEM.js.map} +1 -1
  3. package/dist/{chunk-52T3USYD.js → chunk-NZIHQQRN.js} +2 -2
  4. package/dist/index.js +3 -3
  5. package/dist/{login-WYC24WPA.js → login-KRVJVD2U.js} +3 -3
  6. package/dist/{serve-QRYOK5U4.js → serve-5GHTBELO.js} +2162 -940
  7. package/dist/{serve-QRYOK5U4.js.map → serve-5GHTBELO.js.map} +1 -1
  8. package/dist/{start-6SCOMMSU.js → start-FGCDER5G.js} +4 -4
  9. package/node_modules/loro-crdt/CHANGELOG.md +8 -0
  10. package/node_modules/loro-crdt/base64/index.js +79 -79
  11. package/node_modules/loro-crdt/base64/loro_wasm.d.ts +19 -19
  12. package/node_modules/loro-crdt/bundler/loro_wasm.d.ts +19 -19
  13. package/node_modules/loro-crdt/bundler/loro_wasm_bg.js +74 -74
  14. package/node_modules/loro-crdt/bundler/loro_wasm_bg.wasm +0 -0
  15. package/node_modules/loro-crdt/bundler/loro_wasm_bg.wasm.d.ts +3 -3
  16. package/node_modules/loro-crdt/nodejs/loro_wasm.d.ts +19 -19
  17. package/node_modules/loro-crdt/nodejs/loro_wasm.js +74 -74
  18. package/node_modules/loro-crdt/nodejs/loro_wasm_bg.wasm +0 -0
  19. package/node_modules/loro-crdt/nodejs/loro_wasm_bg.wasm.d.ts +3 -3
  20. package/node_modules/loro-crdt/package.json +1 -1
  21. package/node_modules/loro-crdt/web/loro_wasm.d.ts +22 -22
  22. package/node_modules/loro-crdt/web/loro_wasm.js +73 -73
  23. package/node_modules/loro-crdt/web/loro_wasm_bg.wasm +0 -0
  24. package/node_modules/loro-crdt/web/loro_wasm_bg.wasm.d.ts +3 -3
  25. package/package.json +2 -2
  26. /package/dist/{chunk-52T3USYD.js.map → chunk-NZIHQQRN.js.map} +0 -0
  27. /package/dist/{login-WYC24WPA.js.map → login-KRVJVD2U.js.map} +0 -0
  28. /package/dist/{start-6SCOMMSU.js.map → start-FGCDER5G.js.map} +0 -0
@@ -10,8 +10,8 @@ import {
10
10
  import {
11
11
  ensureAuthenticated,
12
12
  getSignalingUrl
13
- } from "./chunk-52T3USYD.js";
14
- import "./chunk-DBAPXL44.js";
13
+ } from "./chunk-NZIHQQRN.js";
14
+ import "./chunk-MWH2XTEM.js";
15
15
  import "./chunk-EHQITHQX.js";
16
16
  import {
17
17
  print
@@ -243,7 +243,7 @@ async function runDaemonChild() {
243
243
  env.SHIPYARD_USER_ID = authResult.userId;
244
244
  env.SHIPYARD_USER_DISPLAY_NAME = authResult.displayName;
245
245
  env.SHIPYARD_SIGNALING_URL = authResult.signalingUrl;
246
- const { serve } = await import("./serve-QRYOK5U4.js");
246
+ const { serve } = await import("./serve-5GHTBELO.js");
247
247
  return serve({ isDev: env.SHIPYARD_DEV, autoOpenBrowser: !authResult.deviceFlowRan });
248
248
  }
249
249
  async function runSupervisor() {
@@ -282,4 +282,4 @@ async function runSupervisor() {
282
282
  export {
283
283
  startCommand
284
284
  };
285
- //# sourceMappingURL=start-6SCOMMSU.js.map
285
+ //# sourceMappingURL=start-FGCDER5G.js.map
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.12.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 2159110: Fix Emscripten builds by using the native system timestamp path instead of the wasm-bindgen Date.now binding.
8
+ - 658fdc6: Reject malformed import blob metadata instead of panicking when decoding unchecked import blobs.
9
+ - 4d35808: Prefer non-empty root containers when reading documents that contain same-name roots with different container types.
10
+
3
11
  ## 1.12.0
4
12
 
5
13
  ### Minor Changes