veryfront 0.0.12 → 0.0.14

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.
@@ -525,7 +525,7 @@ var init_deno = __esm({
525
525
  "deno.json"() {
526
526
  deno_default = {
527
527
  name: "veryfront",
528
- version: "0.0.12",
528
+ version: "0.0.14",
529
529
  nodeModulesDir: "auto",
530
530
  workspace: [
531
531
  "./examples/async-worker-redis",
@@ -1664,6 +1664,19 @@ var init_schema = __esm({
1664
1664
  memory: z.object({
1665
1665
  files: z.record(z.union([z.string(), z.instanceof(Uint8Array)])).optional()
1666
1666
  }).partial().optional()
1667
+ }).partial().optional(),
1668
+ client: z.object({
1669
+ moduleResolution: z.enum(["cdn", "self-hosted", "bundled"]).optional(),
1670
+ cdn: z.object({
1671
+ provider: z.enum(["esm.sh", "unpkg", "jsdelivr"]).optional(),
1672
+ versions: z.union([
1673
+ z.literal("auto"),
1674
+ z.object({
1675
+ react: z.string().optional(),
1676
+ veryfront: z.string().optional()
1677
+ })
1678
+ ]).optional()
1679
+ }).partial().optional()
1667
1680
  }).partial().optional()
1668
1681
  }).partial();
1669
1682
  }
@@ -1720,6 +1733,13 @@ var init_loader = __esm({
1720
1733
  },
1721
1734
  resolve: {
1722
1735
  importMap: getDefaultImportMapForConfig()
1736
+ },
1737
+ client: {
1738
+ moduleResolution: "cdn",
1739
+ cdn: {
1740
+ provider: "esm.sh",
1741
+ versions: "auto"
1742
+ }
1723
1743
  }
1724
1744
  };
1725
1745
  }