@observablehq/notebook-kit 1.1.0-rc.16 → 1.1.0-rc.17

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.
package/dist/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/observablehq/notebook-kit.git"
7
7
  },
8
- "version": "1.1.0-rc.16",
8
+ "version": "1.1.0-rc.17",
9
9
  "type": "module",
10
10
  "scripts": {
11
11
  "test": "vitest",
@@ -71,7 +71,7 @@ export function observable({ window = new JSDOM().window, parser = new window.DO
71
71
  const cachePath = await getQueryCachePath(context.filename, cell.database, [value]);
72
72
  if (!existsSync(cachePath)) {
73
73
  const args = ["--root", dir, "--database", cell.database, value];
74
- const child = fork(fileURLToPath(import.meta.resolve("../../bin/query.ts")), args);
74
+ const child = fork(fileURLToPath(import.meta.resolve("../../bin/query.js")), args);
75
75
  await new Promise((resolve, reject) => {
76
76
  child.on("error", reject);
77
77
  child.on("exit", resolve);
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/observablehq/notebook-kit.git"
7
7
  },
8
- "version": "1.1.0-rc.16",
8
+ "version": "1.1.0-rc.17",
9
9
  "type": "module",
10
10
  "scripts": {
11
11
  "test": "vitest",