@vertz/ui-server 0.2.55 → 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 +15 -0
- package/dist/bun-dev-server.js +4 -1
- package/dist/bun-plugin/index.js +1 -1
- package/dist/dom-shim/index.js +1 -1
- package/dist/index.d.ts +13 -5
- package/dist/index.js +42 -20
- package/dist/node-handler.js +3 -3
- package/dist/shared/{chunk-sf38sx5e.js → chunk-28vha4sz.js} +38 -16
- package/dist/shared/{chunk-c22cgv96.js → chunk-50wp4jbv.js} +1 -1
- package/dist/shared/{chunk-nstzxw4e.js → chunk-8qw0fkt1.js} +1 -1
- package/dist/shared/{chunk-x8r5mh0q.js → chunk-kpg8dyv9.js} +1 -1
- package/dist/shared/{chunk-bp1ez7v4.js → chunk-tn6khx7g.js} +3 -0
- package/dist/ssr/index.js +3 -3
- package/package.json +6 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
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
|
+
|
|
3
18
|
## 0.2.55
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
package/dist/bun-dev-server.js
CHANGED
|
@@ -4,7 +4,7 @@ import {
|
|
|
4
4
|
imageContentType,
|
|
5
5
|
isValidImageName,
|
|
6
6
|
require_typescript
|
|
7
|
-
} from "./shared/chunk-
|
|
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
|
},
|
package/dist/bun-plugin/index.js
CHANGED
package/dist/dom-shim/index.js
CHANGED
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
|
|
571
|
-
*
|
|
572
|
-
*
|
|
573
|
-
*
|
|
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
|
|
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-
|
|
4
|
+
} from "./shared/chunk-8qw0fkt1.js";
|
|
5
5
|
import {
|
|
6
6
|
createNodeHandler
|
|
7
|
-
} from "./shared/chunk-
|
|
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-
|
|
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-
|
|
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
|
|
100517
|
+
const resolve2 = factory2.createUniqueName("resolve");
|
|
100518
100518
|
const reject = factory2.createUniqueName("reject");
|
|
100519
100519
|
const parameters = [
|
|
100520
|
-
factory2.createParameterDeclaration(undefined, undefined,
|
|
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()]),
|
|
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((
|
|
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
|
-
|
|
170974
|
-
|
|
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
|
|
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
|
|
171038
|
+
return { code, diagnostics: [] };
|
|
171017
171039
|
}
|
|
171018
171040
|
function compile(source, options) {
|
|
171019
171041
|
const compiler = tryLoadNativeCompiler();
|
|
171020
|
-
if (compiler)
|
|
171021
|
-
return
|
|
171022
|
-
return
|
|
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);
|
package/dist/node-handler.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import {
|
|
2
2
|
createNodeHandler
|
|
3
|
-
} from "./shared/chunk-
|
|
4
|
-
import"./shared/chunk-
|
|
5
|
-
import"./shared/chunk-
|
|
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
|
|
100468
|
+
const resolve3 = factory2.createUniqueName("resolve");
|
|
100469
100469
|
const reject = factory2.createUniqueName("reject");
|
|
100470
100470
|
const parameters = [
|
|
100471
|
-
factory2.createParameterDeclaration(undefined, undefined,
|
|
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()]),
|
|
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((
|
|
170651
|
-
(this.packageInstalledPromise ?? (this.packageInstalledPromise = /* @__PURE__ */ new Map)).set(this.packageInstallId, { resolve:
|
|
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
|
-
|
|
170980
|
-
|
|
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
|
|
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
|
|
171044
|
+
return { code, diagnostics: [] };
|
|
171023
171045
|
}
|
|
171024
171046
|
function compile(source, options) {
|
|
171025
171047
|
const compiler = tryLoadNativeCompiler();
|
|
171026
|
-
if (compiler)
|
|
171027
|
-
return
|
|
171028
|
-
return
|
|
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);
|
package/dist/ssr/index.js
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import {
|
|
2
2
|
createSSRHandler,
|
|
3
3
|
loadAotManifest
|
|
4
|
-
} from "../shared/chunk-
|
|
4
|
+
} from "../shared/chunk-8qw0fkt1.js";
|
|
5
5
|
import {
|
|
6
6
|
injectIntoTemplate,
|
|
7
7
|
ssrRenderSinglePass,
|
|
8
8
|
ssrStreamNavQueries
|
|
9
|
-
} from "../shared/chunk-
|
|
10
|
-
import"../shared/chunk-
|
|
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.
|
|
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": "
|
|
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.
|
|
75
|
-
"@vertz/ui": "^0.2.
|
|
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.
|
|
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",
|