@primate/go 0.1.0 → 0.1.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@primate/go",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "Primate Go backend",
5
5
  "homepage": "https://primatejs.com/modules/go",
6
6
  "bugs": "https://github.com/primatejs/primate/issues",
@@ -20,15 +20,15 @@
20
20
  "dependencies": {
21
21
  "@rcompat/cli": "^0.5.1",
22
22
  "@rcompat/env": "^0.3.0",
23
- "@rcompat/fs": "^0.4.0",
23
+ "@rcompat/fs": "^0.5.0",
24
24
  "@rcompat/invariant": "^0.5.0",
25
25
  "@rcompat/object": "^0.5.0",
26
26
  "@rcompat/platform": "^0.3.0",
27
- "@rcompat/stdio": "^0.4.0",
28
- "@primate/core": "^0.1.0"
27
+ "@rcompat/stdio": "^0.5.0",
28
+ "@primate/core": "^0.1.6"
29
29
  },
30
30
  "peerDependencies": {
31
- "primate": "^0.32.0"
31
+ "primate": "^0.32.3"
32
32
  },
33
33
  "type": "module",
34
34
  "imports": {
@@ -38,7 +38,7 @@ ${
38
38
  import route_path from "${path}" with { type: "file" };
39
39
  const route = await Bun.file(route_path).arrayBuffer();
40
40
  ` : `
41
- import file from "@rcompat/fs/file";
41
+ import file from "primate/runtime/file";
42
42
  const route = new Uint8Array(await file(import.meta.dirname+"/${path}")
43
43
  .arrayBuffer());
44
44
  `