veryfront 0.0.71 → 0.0.73

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.
@@ -274,7 +274,7 @@ var init_deno = __esm({
274
274
  "deno.json"() {
275
275
  deno_default = {
276
276
  name: "veryfront",
277
- version: "0.0.71",
277
+ version: "0.0.73",
278
278
  nodeModulesDir: "auto",
279
279
  exclude: [
280
280
  "npm/",
@@ -486,7 +486,7 @@ var isDeno, isNode, isBun, isCloudflare;
486
486
  var init_runtime = __esm({
487
487
  "src/platform/compat/runtime.ts"() {
488
488
  init_deno_env();
489
- isDeno = typeof Deno !== "undefined";
489
+ isDeno = typeof Deno !== "undefined" && typeof Deno.version === "object";
490
490
  isNode = typeof globalThis.process !== "undefined" && globalThis.process?.versions?.node !== void 0;
491
491
  isBun = typeof globalThis.Bun !== "undefined";
492
492
  isCloudflare = typeof globalThis !== "undefined" && "caches" in globalThis && "WebSocketPair" in globalThis;
@@ -4632,7 +4632,7 @@ __export(detect_exports, {
4632
4632
  runtime: () => runtime
4633
4633
  });
4634
4634
  function isDeno2(global) {
4635
- return "Deno" in global && typeof global.Deno === "object";
4635
+ return "Deno" in global && typeof global.Deno === "object" && typeof global.Deno.version === "object";
4636
4636
  }
4637
4637
  function isBun2(global) {
4638
4638
  return "Bun" in global && typeof global.Bun === "object";