@vertz/ui-server 0.2.54 → 0.2.56

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/CHANGELOG.md CHANGED
@@ -1,5 +1,28 @@
1
1
  # @vertz/ui-server
2
2
 
3
+ ## 0.2.56
4
+
5
+ ### Patch Changes
6
+
7
+ - [#2459](https://github.com/vertz-dev/vertz/pull/2459) [`52ebef6`](https://github.com/vertz-dev/vertz/commit/52ebef61c623f77becfde5bef8115a32daf027a6) Thanks [@viniciusdacal](https://github.com/viniciusdacal)! - fix(build): use native compiler for library builds so Provider children are thunked
8
+
9
+ Library packages (ui-primitives, theme-shadcn) were compiled with Bun's JSX fallback
10
+ instead of the native Rust compiler. The fallback doesn't wrap JSX children in thunks,
11
+ causing context-based components (List, Tabs, Dialog, etc.) to throw "must be used
12
+ inside" errors because children evaluate before the Provider sets up context.
13
+
14
+ - Updated dependencies []:
15
+ - @vertz/core@0.2.56
16
+ - @vertz/ui@0.2.56
17
+
18
+ ## 0.2.55
19
+
20
+ ### Patch Changes
21
+
22
+ - Updated dependencies []:
23
+ - @vertz/core@0.2.55
24
+ - @vertz/ui@0.2.55
25
+
3
26
  ## 0.2.54
4
27
 
5
28
  ### Patch Changes
@@ -4,7 +4,7 @@ import {
4
4
  imageContentType,
5
5
  isValidImageName,
6
6
  require_typescript
7
- } from "./shared/chunk-sf38sx5e.js";
7
+ } from "./shared/chunk-28vha4sz.js";
8
8
  import {
9
9
  __require,
10
10
  __toESM
@@ -2288,6 +2288,9 @@ function installDomShim() {
2288
2288
  createComment(text) {
2289
2289
  return new SSRComment(text);
2290
2290
  },
2291
+ createElementNS(_ns, tag) {
2292
+ return new SSRElement(tag);
2293
+ },
2291
2294
  createDocumentFragment() {
2292
2295
  return new SSRDocumentFragment;
2293
2296
  },
@@ -4,7 +4,7 @@ import {
4
4
  computeImageOutputPaths,
5
5
  require_typescript,
6
6
  resolveImageSrc
7
- } from "../shared/chunk-sf38sx5e.js";
7
+ } from "../shared/chunk-28vha4sz.js";
8
8
  import {
9
9
  __require,
10
10
  __toESM
@@ -1648,7 +1648,13 @@ function filePathHash(filePath) {
1648
1648
  import { createHash } from "crypto";
1649
1649
  import { existsSync, mkdirSync, readFileSync as readFileSync3, writeFileSync } from "fs";
1650
1650
  import { basename, extname, resolve as resolve2 } from "path";
1651
- import sharp from "sharp";
1651
+ var _sharp;
1652
+ async function getSharp() {
1653
+ if (!_sharp) {
1654
+ _sharp = (await import("sharp")).default;
1655
+ }
1656
+ return _sharp;
1657
+ }
1652
1658
  var FORMAT_MAP = {
1653
1659
  jpeg: { ext: ".jpg", mime: "image/jpeg" },
1654
1660
  jpg: { ext: ".jpg", mime: "image/jpeg" },
@@ -1666,7 +1672,8 @@ async function processImage(opts) {
1666
1672
  const sourceBuffer = readFileSync3(sourcePath);
1667
1673
  const hash = createHash("sha256").update(sourceBuffer).update(`${width}x${height}q${quality}f${fit}`).digest("hex").slice(0, 12);
1668
1674
  const name = basename(sourcePath, extname(sourcePath));
1669
- const meta = await sharp(sourceBuffer).metadata();
1675
+ const sharpModule = await getSharp();
1676
+ const meta = await sharpModule(sourceBuffer).metadata();
1670
1677
  const sourceFormat = meta.format ?? "jpeg";
1671
1678
  const defaultFormat = { ext: ".jpg", mime: "image/jpeg" };
1672
1679
  const formatInfo = FORMAT_MAP[sourceFormat] ?? defaultFormat;
@@ -1691,9 +1698,9 @@ async function processImage(opts) {
1691
1698
  mkdirSync(outputDir, { recursive: true });
1692
1699
  const sharpFit = fit;
1693
1700
  const [webp1xBuf, webp2xBuf, fallbackBuf] = await Promise.all([
1694
- sharp(sourceBuffer).resize(width, height, { fit: sharpFit }).webp({ quality }).toBuffer(),
1695
- sharp(sourceBuffer).resize(width * 2, height * 2, { fit: sharpFit }).webp({ quality }).toBuffer(),
1696
- sharp(sourceBuffer).resize(width * 2, height * 2, { fit: sharpFit }).toFormat(sourceFormat, { quality }).toBuffer()
1701
+ sharpModule(sourceBuffer).resize(width, height, { fit: sharpFit }).webp({ quality }).toBuffer(),
1702
+ sharpModule(sourceBuffer).resize(width * 2, height * 2, { fit: sharpFit }).webp({ quality }).toBuffer(),
1703
+ sharpModule(sourceBuffer).resize(width * 2, height * 2, { fit: sharpFit }).toFormat(sourceFormat, { quality }).toBuffer()
1697
1704
  ]);
1698
1705
  writeFileSync(webp1xPath, webp1xBuf);
1699
1706
  writeFileSync(webp2xPath, webp2xBuf);
@@ -7,7 +7,7 @@ import {
7
7
  installDomShim,
8
8
  removeDomShim,
9
9
  toVNode
10
- } from "../shared/chunk-bp1ez7v4.js";
10
+ } from "../shared/chunk-tn6khx7g.js";
11
11
  import"../shared/chunk-bt1px3c4.js";
12
12
  export {
13
13
  toVNode,
package/dist/index.d.ts CHANGED
@@ -567,10 +567,15 @@ import { FallbackFontName as FallbackFontName2, FontFallbackMetrics as FontFallb
567
567
  * Native compiler wrapper — loads the Rust-based Vertz compiler via NAPI
568
568
  * and exposes it with proper TypeScript types.
569
569
  *
570
- * The native compiler is the primary compilation path. When the binary
571
- * is not available (e.g. CI without a pre-built binary), compile() falls
572
- * back to Bun's built-in JSX transpiler with a warning. compileForSsrAot()
573
- * has no fallback and throws if the binary is missing.
570
+ * The native compiler is the primary compilation path:
571
+ * - loadNativeCompiler() throws if the binary is unavailable
572
+ * - tryLoadNativeCompiler() returns null if unavailable
573
+ * - compile() falls back to Bun's JSX transpiler with a warning
574
+ * - compileForSsrAot() — throws (no fallback, AOT needs full transforms)
575
+ *
576
+ * The Bun JSX fallback does NOT produce children thunks, signal transforms,
577
+ * or CSS extraction — it exists for CI environments where the native
578
+ * binary is not available and partial compilation is acceptable.
574
579
  *
575
580
  * NAPI-RS auto-converts between Rust snake_case and JS camelCase
576
581
  * in both directions, so our TypeScript interfaces use camelCase
@@ -674,7 +679,10 @@ interface NativeCompiler {
674
679
  declare function loadNativeCompiler(): NativeCompiler;
675
680
  /**
676
681
  * Compile a TypeScript/JSX source file using the native Rust compiler.
677
- * Falls back to Bun's JSX transpiler if the native binary is unavailable.
682
+ * Falls back to Bun's JSX transpiler with a warning when the native
683
+ * binary is unavailable (e.g. on CI without the platform binary).
684
+ * The fallback does NOT produce signal transforms, CSS extraction, or
685
+ * children thunks — use loadNativeCompiler() directly when these are required.
678
686
  */
679
687
  declare function compile(source: string, options?: NativeCompileOptions): NativeCompileResult;
680
688
  /**
package/dist/index.js CHANGED
@@ -1,10 +1,10 @@
1
1
  import {
2
2
  createSSRHandler,
3
3
  loadAotManifest
4
- } from "./shared/chunk-nstzxw4e.js";
4
+ } from "./shared/chunk-8qw0fkt1.js";
5
5
  import {
6
6
  createNodeHandler
7
- } from "./shared/chunk-x8r5mh0q.js";
7
+ } from "./shared/chunk-kpg8dyv9.js";
8
8
  import {
9
9
  clearRouteCssCache,
10
10
  collectStreamChunks,
@@ -34,7 +34,7 @@ import {
34
34
  ssrStreamNavQueries,
35
35
  streamToString,
36
36
  toPrefetchSession
37
- } from "./shared/chunk-c22cgv96.js";
37
+ } from "./shared/chunk-50wp4jbv.js";
38
38
  import {
39
39
  clearGlobalSSRTimeout,
40
40
  createSSRAdapter,
@@ -46,7 +46,7 @@ import {
46
46
  registerSSRQuery,
47
47
  setGlobalSSRTimeout,
48
48
  ssrStorage
49
- } from "./shared/chunk-bp1ez7v4.js";
49
+ } from "./shared/chunk-tn6khx7g.js";
50
50
  import {
51
51
  __commonJS,
52
52
  __require,
@@ -100514,14 +100514,14 @@ ${lanes.join(`
100514
100514
  }
100515
100515
  }
100516
100516
  function createImportCallExpressionAMD(arg, containsLexicalThis) {
100517
- const resolve = factory2.createUniqueName("resolve");
100517
+ const resolve2 = factory2.createUniqueName("resolve");
100518
100518
  const reject = factory2.createUniqueName("reject");
100519
100519
  const parameters = [
100520
- factory2.createParameterDeclaration(undefined, undefined, resolve),
100520
+ factory2.createParameterDeclaration(undefined, undefined, resolve2),
100521
100521
  factory2.createParameterDeclaration(undefined, undefined, reject)
100522
100522
  ];
100523
100523
  const body = factory2.createBlock([
100524
- factory2.createExpressionStatement(factory2.createCallExpression(factory2.createIdentifier("require"), undefined, [factory2.createArrayLiteralExpression([arg || factory2.createOmittedExpression()]), resolve, reject]))
100524
+ factory2.createExpressionStatement(factory2.createCallExpression(factory2.createIdentifier("require"), undefined, [factory2.createArrayLiteralExpression([arg || factory2.createOmittedExpression()]), resolve2, reject]))
100525
100525
  ]);
100526
100526
  let func;
100527
100527
  if (languageVersion >= 2) {
@@ -170696,8 +170696,8 @@ Additional information: BADCLIENT: Bad error code, ${badCode} not found in range
170696
170696
  installPackage(options) {
170697
170697
  this.packageInstallId++;
170698
170698
  const request = { kind: "installPackage", ...options, id: this.packageInstallId };
170699
- const promise = new Promise((resolve, reject) => {
170700
- (this.packageInstalledPromise ?? (this.packageInstalledPromise = /* @__PURE__ */ new Map)).set(this.packageInstallId, { resolve, reject });
170699
+ const promise = new Promise((resolve2, reject) => {
170700
+ (this.packageInstalledPromise ?? (this.packageInstalledPromise = /* @__PURE__ */ new Map)).set(this.packageInstallId, { resolve: resolve2, reject });
170701
170701
  });
170702
170702
  this.installer.send(request);
170703
170703
  return promise;
@@ -170957,26 +170957,47 @@ Additional information: BADCLIENT: Bad error code, ${badCode} not found in range
170957
170957
  });
170958
170958
 
170959
170959
  // src/compiler/native-compiler.ts
170960
+ import { existsSync } from "node:fs";
170961
+ import { dirname, resolve } from "node:path";
170962
+ var __dirname = "/home/runner/work/vertz/vertz/packages/ui-server/src/compiler";
170960
170963
  var cachedCompiler = null;
170961
170964
  var nativeUnavailable = false;
170962
- var warnedFallback = false;
170963
170965
  function resolveBinaryName() {
170964
170966
  const platform = process.platform === "darwin" ? "darwin" : "linux";
170965
170967
  const arch = process.arch === "arm64" ? "arm64" : "x64";
170966
170968
  return `vertz-compiler.${platform}-${arch}.node`;
170967
170969
  }
170970
+ function resolveBinaryPath(binaryName) {
170971
+ try {
170972
+ return __require.resolve(`@vertz/native-compiler/${binaryName}`);
170973
+ } catch {}
170974
+ const startDir = typeof import.meta !== "undefined" && import.meta.dir || (typeof __dirname !== "undefined" ? __dirname : null);
170975
+ if (!startDir)
170976
+ return null;
170977
+ let dir = dirname(startDir);
170978
+ for (let i = 0;i < 10; i++) {
170979
+ const candidate = resolve(dir, "native", "vertz-compiler", binaryName);
170980
+ if (existsSync(candidate)) {
170981
+ return candidate;
170982
+ }
170983
+ const parent = dirname(dir);
170984
+ if (parent === dir)
170985
+ break;
170986
+ dir = parent;
170987
+ }
170988
+ return null;
170989
+ }
170968
170990
  function loadNativeCompiler() {
170969
170991
  if (cachedCompiler) {
170970
170992
  return wrapCompiler(cachedCompiler);
170971
170993
  }
170972
170994
  const binaryName = resolveBinaryName();
170973
- try {
170974
- const modulePath = __require.resolve(`@vertz/native-compiler/${binaryName}`);
170975
- cachedCompiler = __require(modulePath);
170976
- return wrapCompiler(cachedCompiler);
170977
- } catch {
170995
+ const binaryPath = resolveBinaryPath(binaryName);
170996
+ if (!binaryPath) {
170978
170997
  throw new Error(`Failed to load native compiler binary: @vertz/native-compiler/${binaryName}. ` + "Ensure @vertz/native-compiler is installed with the correct platform binary.");
170979
170998
  }
170999
+ cachedCompiler = __require(binaryPath);
171000
+ return wrapCompiler(cachedCompiler);
170980
171001
  }
170981
171002
  function tryLoadNativeCompiler() {
170982
171003
  if (cachedCompiler)
@@ -171001,25 +171022,26 @@ function wrapCompiler(raw) {
171001
171022
  }
171002
171023
  };
171003
171024
  }
171025
+ var warnedFallback = false;
171004
171026
  function compileFallback(source) {
171005
171027
  if (!warnedFallback) {
171006
171028
  warnedFallback = true;
171007
171029
  console.warn("[vertz] Native compiler binary not available — falling back to Bun JSX transpiler. " + "Signal transforms, CSS extraction, and hydration markers will be missing.");
171008
171030
  }
171009
- const transpiled = new Bun.Transpiler({
171031
+ const code = new Bun.Transpiler({
171010
171032
  loader: "tsx",
171011
171033
  autoImportJSX: true,
171012
171034
  tsconfig: JSON.stringify({
171013
171035
  compilerOptions: { jsx: "react-jsx", jsxImportSource: "@vertz/ui" }
171014
171036
  })
171015
171037
  }).transformSync(source);
171016
- return { code: transpiled, diagnostics: [] };
171038
+ return { code, diagnostics: [] };
171017
171039
  }
171018
171040
  function compile(source, options) {
171019
171041
  const compiler = tryLoadNativeCompiler();
171020
- if (compiler)
171021
- return compiler.compile(source, options);
171022
- return compileFallback(source);
171042
+ if (!compiler)
171043
+ return compileFallback(source);
171044
+ return compiler.compile(source, options);
171023
171045
  }
171024
171046
  function compileForSsrAot(source, options) {
171025
171047
  return loadNativeCompiler().compileForSsrAot(source, options);
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  createNodeHandler
3
- } from "./shared/chunk-x8r5mh0q.js";
4
- import"./shared/chunk-c22cgv96.js";
5
- import"./shared/chunk-bp1ez7v4.js";
3
+ } from "./shared/chunk-kpg8dyv9.js";
4
+ import"./shared/chunk-50wp4jbv.js";
5
+ import"./shared/chunk-tn6khx7g.js";
6
6
  import"./shared/chunk-bt1px3c4.js";
7
7
  export {
8
8
  createNodeHandler
@@ -100465,14 +100465,14 @@ ${lanes.join(`
100465
100465
  }
100466
100466
  }
100467
100467
  function createImportCallExpressionAMD(arg, containsLexicalThis) {
100468
- const resolve2 = factory2.createUniqueName("resolve");
100468
+ const resolve3 = factory2.createUniqueName("resolve");
100469
100469
  const reject = factory2.createUniqueName("reject");
100470
100470
  const parameters = [
100471
- factory2.createParameterDeclaration(undefined, undefined, resolve2),
100471
+ factory2.createParameterDeclaration(undefined, undefined, resolve3),
100472
100472
  factory2.createParameterDeclaration(undefined, undefined, reject)
100473
100473
  ];
100474
100474
  const body = factory2.createBlock([
100475
- factory2.createExpressionStatement(factory2.createCallExpression(factory2.createIdentifier("require"), undefined, [factory2.createArrayLiteralExpression([arg || factory2.createOmittedExpression()]), resolve2, reject]))
100475
+ factory2.createExpressionStatement(factory2.createCallExpression(factory2.createIdentifier("require"), undefined, [factory2.createArrayLiteralExpression([arg || factory2.createOmittedExpression()]), resolve3, reject]))
100476
100476
  ]);
100477
100477
  let func;
100478
100478
  if (languageVersion >= 2) {
@@ -170647,8 +170647,8 @@ Additional information: BADCLIENT: Bad error code, ${badCode} not found in range
170647
170647
  installPackage(options) {
170648
170648
  this.packageInstallId++;
170649
170649
  const request = { kind: "installPackage", ...options, id: this.packageInstallId };
170650
- const promise = new Promise((resolve2, reject) => {
170651
- (this.packageInstalledPromise ?? (this.packageInstalledPromise = /* @__PURE__ */ new Map)).set(this.packageInstallId, { resolve: resolve2, reject });
170650
+ const promise = new Promise((resolve3, reject) => {
170651
+ (this.packageInstalledPromise ?? (this.packageInstalledPromise = /* @__PURE__ */ new Map)).set(this.packageInstallId, { resolve: resolve3, reject });
170652
170652
  });
170653
170653
  this.installer.send(request);
170654
170654
  return promise;
@@ -170963,26 +170963,47 @@ function computeImageOutputPaths(sourcePath, width, height, quality, fit) {
170963
170963
  }
170964
170964
 
170965
170965
  // src/compiler/native-compiler.ts
170966
+ import { existsSync } from "fs";
170967
+ import { dirname as dirname2, resolve as resolve2 } from "path";
170968
+ var __dirname = "/home/runner/work/vertz/vertz/packages/ui-server/src/compiler";
170966
170969
  var cachedCompiler = null;
170967
170970
  var nativeUnavailable = false;
170968
- var warnedFallback = false;
170969
170971
  function resolveBinaryName() {
170970
170972
  const platform = process.platform === "darwin" ? "darwin" : "linux";
170971
170973
  const arch = process.arch === "arm64" ? "arm64" : "x64";
170972
170974
  return `vertz-compiler.${platform}-${arch}.node`;
170973
170975
  }
170976
+ function resolveBinaryPath(binaryName) {
170977
+ try {
170978
+ return __require.resolve(`@vertz/native-compiler/${binaryName}`);
170979
+ } catch {}
170980
+ const startDir = typeof import.meta !== "undefined" && import.meta.dir || (typeof __dirname !== "undefined" ? __dirname : null);
170981
+ if (!startDir)
170982
+ return null;
170983
+ let dir = dirname2(startDir);
170984
+ for (let i = 0;i < 10; i++) {
170985
+ const candidate = resolve2(dir, "native", "vertz-compiler", binaryName);
170986
+ if (existsSync(candidate)) {
170987
+ return candidate;
170988
+ }
170989
+ const parent = dirname2(dir);
170990
+ if (parent === dir)
170991
+ break;
170992
+ dir = parent;
170993
+ }
170994
+ return null;
170995
+ }
170974
170996
  function loadNativeCompiler() {
170975
170997
  if (cachedCompiler) {
170976
170998
  return wrapCompiler(cachedCompiler);
170977
170999
  }
170978
171000
  const binaryName = resolveBinaryName();
170979
- try {
170980
- const modulePath = __require.resolve(`@vertz/native-compiler/${binaryName}`);
170981
- cachedCompiler = __require(modulePath);
170982
- return wrapCompiler(cachedCompiler);
170983
- } catch {
171001
+ const binaryPath = resolveBinaryPath(binaryName);
171002
+ if (!binaryPath) {
170984
171003
  throw new Error(`Failed to load native compiler binary: @vertz/native-compiler/${binaryName}. ` + "Ensure @vertz/native-compiler is installed with the correct platform binary.");
170985
171004
  }
171005
+ cachedCompiler = __require(binaryPath);
171006
+ return wrapCompiler(cachedCompiler);
170986
171007
  }
170987
171008
  function tryLoadNativeCompiler() {
170988
171009
  if (cachedCompiler)
@@ -171007,25 +171028,26 @@ function wrapCompiler(raw) {
171007
171028
  }
171008
171029
  };
171009
171030
  }
171031
+ var warnedFallback = false;
171010
171032
  function compileFallback(source) {
171011
171033
  if (!warnedFallback) {
171012
171034
  warnedFallback = true;
171013
171035
  console.warn("[vertz] Native compiler binary not available \u2014 falling back to Bun JSX transpiler. " + "Signal transforms, CSS extraction, and hydration markers will be missing.");
171014
171036
  }
171015
- const transpiled = new Bun.Transpiler({
171037
+ const code = new Bun.Transpiler({
171016
171038
  loader: "tsx",
171017
171039
  autoImportJSX: true,
171018
171040
  tsconfig: JSON.stringify({
171019
171041
  compilerOptions: { jsx: "react-jsx", jsxImportSource: "@vertz/ui" }
171020
171042
  })
171021
171043
  }).transformSync(source);
171022
- return { code: transpiled, diagnostics: [] };
171044
+ return { code, diagnostics: [] };
171023
171045
  }
171024
171046
  function compile(source, options) {
171025
171047
  const compiler = tryLoadNativeCompiler();
171026
- if (compiler)
171027
- return compiler.compile(source, options);
171028
- return compileFallback(source);
171048
+ if (!compiler)
171049
+ return compileFallback(source);
171050
+ return compiler.compile(source, options);
171029
171051
  }
171030
171052
  function compileForSsrAot(source, options) {
171031
171053
  return loadNativeCompiler().compileForSsrAot(source, options);
@@ -6,7 +6,7 @@ import {
6
6
  setGlobalSSRTimeout,
7
7
  ssrStorage,
8
8
  toVNode
9
- } from "./chunk-bp1ez7v4.js";
9
+ } from "./chunk-tn6khx7g.js";
10
10
 
11
11
  // src/html-serializer.ts
12
12
  var VOID_ELEMENTS = new Set([
@@ -12,7 +12,7 @@ import {
12
12
  ssrRenderSinglePass,
13
13
  ssrStreamNavQueries,
14
14
  toPrefetchSession
15
- } from "./chunk-c22cgv96.js";
15
+ } from "./chunk-50wp4jbv.js";
16
16
 
17
17
  // src/aot-manifest-loader.ts
18
18
  import { existsSync, readFileSync } from "node:fs";
@@ -11,7 +11,7 @@ import {
11
11
  ssrRenderSinglePass,
12
12
  ssrStreamNavQueries,
13
13
  toPrefetchSession
14
- } from "./chunk-c22cgv96.js";
14
+ } from "./chunk-50wp4jbv.js";
15
15
 
16
16
  // src/node-handler.ts
17
17
  function createNodeHandler(options) {
@@ -664,6 +664,9 @@ function installDomShim() {
664
664
  createComment(text) {
665
665
  return new SSRComment(text);
666
666
  },
667
+ createElementNS(_ns, tag) {
668
+ return new SSRElement(tag);
669
+ },
667
670
  createDocumentFragment() {
668
671
  return new SSRDocumentFragment;
669
672
  },
package/dist/ssr/index.js CHANGED
@@ -1,13 +1,13 @@
1
1
  import {
2
2
  createSSRHandler,
3
3
  loadAotManifest
4
- } from "../shared/chunk-nstzxw4e.js";
4
+ } from "../shared/chunk-8qw0fkt1.js";
5
5
  import {
6
6
  injectIntoTemplate,
7
7
  ssrRenderSinglePass,
8
8
  ssrStreamNavQueries
9
- } from "../shared/chunk-c22cgv96.js";
10
- import"../shared/chunk-bp1ez7v4.js";
9
+ } from "../shared/chunk-50wp4jbv.js";
10
+ import"../shared/chunk-tn6khx7g.js";
11
11
  import"../shared/chunk-bt1px3c4.js";
12
12
  // src/prerender.ts
13
13
  async function discoverRoutes(module) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vertz/ui-server",
3
- "version": "0.2.54",
3
+ "version": "0.2.56",
4
4
  "description": "Vertz UI server-side rendering runtime",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -65,21 +65,22 @@
65
65
  "test": "bun test --timeout 60000 src/",
66
66
  "test:integration": "bun test src/__tests__/bun-dev-server.integration.local.ts",
67
67
  "test:e2e": "bunx playwright test",
68
- "typecheck": "tsc --noEmit"
68
+ "typecheck": "tsgo --noEmit"
69
69
  },
70
70
  "dependencies": {
71
71
  "@ampproject/remapping": "^2.3.0",
72
72
  "@capsizecss/unpack": "^4.0.0",
73
73
  "@jridgewell/trace-mapping": "^0.3.31",
74
- "@vertz/core": "^0.2.54",
75
- "@vertz/ui": "^0.2.54",
74
+ "@vertz/core": "^0.2.56",
75
+ "@vertz/ui": "^0.2.56",
76
76
  "magic-string": "^0.30.0",
77
77
  "sharp": "^0.34.5"
78
78
  },
79
79
  "devDependencies": {
80
80
  "@happy-dom/global-registrator": "^20.8.3",
81
81
  "@playwright/test": "^1.58.2",
82
- "@vertz/codegen": "^0.2.54",
82
+ "@vertz/codegen": "^0.2.56",
83
+ "@vertz/test": "0.2.56",
83
84
  "bun-types": "^1.3.10",
84
85
  "bunup": "^0.16.31",
85
86
  "happy-dom": "^20.8.3",