@primate/core 0.4.2 → 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.
@@ -19,9 +19,9 @@ import plugin_wasm from "#build/server/plugin/wasm";
19
19
  import runtime from "@rcompat/runtime";
20
20
  import * as esbuild from "esbuild";
21
21
  const externals = {
22
- node: ["node:"],
23
- bun: ["node:", "bun:"],
24
- deno: ["node:"],
22
+ node: ["node:*"],
23
+ bun: ["node:*", "bun:*"],
24
+ deno: ["node:*"],
25
25
  };
26
26
  const conditions = {
27
27
  node: ["node"],
@@ -1,6 +1,6 @@
1
1
  // @ts-expect-error esbuild vfs
2
2
  import stamp from "server:stamp";
3
- console.log(stamp);
3
+ (() => stamp)();
4
4
  // @ts-expect-error esbuild vfs
5
5
  import * as frontends from "app:frontends";
6
6
  class ClientApp {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@primate/core",
3
- "version": "0.4.2",
3
+ "version": "0.4.4",
4
4
  "description": "The universal web framework",
5
5
  "homepage": "https://primate.run",
6
6
  "bugs": "https://github.com/primate-run/primate/issues",