veryfront 0.0.74 → 0.0.75

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/config.js CHANGED
@@ -6,7 +6,6 @@ var __esm = (fn, res) => function __init() {
6
6
  // src/_shims/deno-env.ts
7
7
  var init_deno_env = __esm({
8
8
  "src/_shims/deno-env.ts"() {
9
- "use strict";
10
9
  globalThis.Deno = globalThis.Deno || {
11
10
  env: {
12
11
  get(key) {
@@ -486,7 +485,7 @@ init_deno_env();
486
485
  // deno.json
487
486
  var deno_default = {
488
487
  name: "veryfront",
489
- version: "0.0.74",
488
+ version: "0.0.75",
490
489
  nodeModulesDir: "auto",
491
490
  exclude: [
492
491
  "npm/",
@@ -518,7 +517,11 @@ var deno_default = {
518
517
  "./oauth": "./src/core/oauth/index.ts",
519
518
  "./oauth/providers": "./src/core/oauth/providers/index.ts",
520
519
  "./oauth/handlers": "./src/core/oauth/handlers/index.ts",
521
- "./oauth/token-store": "./src/core/oauth/token-store/index.ts"
520
+ "./oauth/token-store": "./src/core/oauth/token-store/index.ts",
521
+ "./head": "./src/exports/head.ts",
522
+ "./router": "./src/exports/router.ts",
523
+ "./context": "./src/exports/context.ts",
524
+ "./fonts": "./src/exports/fonts.ts"
522
525
  },
523
526
  imports: {
524
527
  "@veryfront": "./src/index.ts",
@@ -573,7 +576,7 @@ var deno_default = {
573
576
  "@types/react-dom": "https://esm.sh/@types/react-dom@18.3.7?deps=csstype@3.2.3",
574
577
  react: "npm:react@18.3.1",
575
578
  "react-dom": "npm:react-dom@18.3.1",
576
- "react-dom/server": "npm:react-dom@18.3.1/server.node",
579
+ "react-dom/server": "npm:react-dom@18.3.1/server",
577
580
  "react-dom/client": "npm:react-dom@18.3.1/client",
578
581
  "react/jsx-runtime": "npm:react@18.3.1/jsx-runtime",
579
582
  "react/jsx-dev-runtime": "npm:react@18.3.1/jsx-dev-runtime",
@@ -603,7 +606,7 @@ var deno_default = {
603
606
  unocss: "https://esm.sh/unocss@0.59.0",
604
607
  "@unocss/core": "https://esm.sh/@unocss/core@0.59.0",
605
608
  "@unocss/preset-wind": "https://esm.sh/@unocss/preset-wind@0.59.0",
606
- "next-themes": "npm:next-themes@0.3.0",
609
+ "next-themes": "npm:next-themes@0.4",
607
610
  redis: "npm:redis",
608
611
  pg: "npm:pg",
609
612
  "@opentelemetry/api": "npm:@opentelemetry/api@1",
@@ -899,12 +902,10 @@ var DEV_SERVER_ENDPOINTS = {
899
902
  // src/platform/compat/fs.ts
900
903
  init_deno_env();
901
904
  var NodeFileSystem = class {
902
- constructor() {
903
- this.fs = null;
904
- this.os = null;
905
- this.path = null;
906
- this.initialized = false;
907
- }
905
+ fs = null;
906
+ os = null;
907
+ path = null;
908
+ initialized = false;
908
909
  async ensureInitialized() {
909
910
  if (this.initialized)
910
911
  return;
@@ -1196,7 +1197,7 @@ var ConfigValidationError = class extends Error {
1196
1197
  function isVirtualFilesystem(adapter) {
1197
1198
  const wrappedAdapter = adapter?.fs?.fsAdapter;
1198
1199
  const adapterName = wrappedAdapter?.constructor?.name;
1199
- return adapterName === "VeryfrontFSAdapter";
1200
+ return adapterName === "VeryfrontFSAdapter" || adapterName === "MultiProjectFSAdapter";
1200
1201
  }
1201
1202
  async function loadConfigFromVirtualFS(configPath, projectDir, adapter) {
1202
1203
  const fs = createFileSystem();