@inkandswitch/patchwork-bootloader 0.4.3 → 0.4.4

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.
@@ -31,9 +31,6 @@ async function resolveExternal(name) {
31
31
  }
32
32
  return resolved.id;
33
33
  }
34
- /**
35
- * merge the importmap option with our builtins
36
- */
37
34
  function createImportMap(options) {
38
35
  const importmap = structuredClone(options?.importmap ?? { imports: {}, scopes: {} });
39
36
  importmap.imports ??= {};
@@ -54,7 +51,7 @@ export function importmap(options) {
54
51
  preserveSignature: "strict",
55
52
  });
56
53
  }
57
- // Emit automerge, keyhive, and subduction wasm so the service worker can fetch them
54
+ // Emitted so the service worker can fetch them
58
55
  const automergeWasmPath = require.resolve("@automerge/automerge/automerge.wasm");
59
56
  this.emitFile({
60
57
  type: "asset",
@@ -67,7 +64,6 @@ export function importmap(options) {
67
64
  fileName: "keyhive_wasm.wasm",
68
65
  source: readFileSync(keyhiveWasmPath),
69
66
  });
70
- // Emit subduction wasm so the service worker can fetch it
71
67
  const subdWasmPath = require.resolve("@automerge/automerge-subduction/wasm");
72
68
  this.emitFile({
73
69
  type: "asset",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inkandswitch/patchwork-bootloader",
3
- "version": "0.4.3",
3
+ "version": "0.4.4",
4
4
  "author": "chee",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -62,10 +62,10 @@
62
62
  "service-worker-types": "npm:@types/serviceworker@^0.0.153",
63
63
  "solid-js": "^1.9.13",
64
64
  "tinyargs": "^0.1.4",
65
- "@inkandswitch/patchwork-elements": "^4.0.0",
66
- "@inkandswitch/patchwork-filesystem": "^0.2.1",
65
+ "@inkandswitch/patchwork-elements": "^4.0.1",
66
+ "@inkandswitch/patchwork-filesystem": "^0.2.2",
67
67
  "@inkandswitch/patchwork-plugins": "^1.0.1",
68
- "@inkandswitch/patchwork-providers": "^0.4.1"
68
+ "@inkandswitch/patchwork-providers": "^0.4.2"
69
69
  },
70
70
  "peerDependencies": {
71
71
  "@automerge/automerge": "3.3.2",