@geajs/vite-plugin 1.2.2 → 1.3.0
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/index.mjs +6286 -9573
- package/gea-env.d.ts +2 -0
- package/package.json +4 -3
package/gea-env.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@geajs/vite-plugin",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.3.0",
|
|
4
4
|
"description": "Vite plugin for Gea framework - JSX/TSX transform, reactivity, HMR",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.mjs",
|
|
@@ -42,7 +42,8 @@
|
|
|
42
42
|
"scripts": {
|
|
43
43
|
"prepublishOnly": "tsdown",
|
|
44
44
|
"build": "tsdown",
|
|
45
|
-
"test": "tsx --conditions source --test
|
|
45
|
+
"test": "NODE_OPTIONS=--max-old-space-size=8192 tsx --conditions source --test tests/*.test.ts tests/regressions/*.test.ts tests/closure-codegen/*.test.ts",
|
|
46
|
+
"test:benchmark": "NODE_OPTIONS=--max-old-space-size=8192 tsx --conditions source --test tests/regressions/js-framework-benchmark-ops.test.ts",
|
|
46
47
|
"test:e2e": "npx playwright test --config=../../tests/e2e/playwright.config.ts",
|
|
47
48
|
"build:browser": "rollup -c rollup.browser.config.js",
|
|
48
49
|
"build:codemirror": "rollup -c rollup.codemirror.config.js",
|
|
@@ -74,7 +75,7 @@
|
|
|
74
75
|
"rollup-plugin-esbuild": "^6.2.1",
|
|
75
76
|
"tsdown": "^0.21.2",
|
|
76
77
|
"tsx": "^4.21.0",
|
|
77
|
-
"typescript": "^
|
|
78
|
+
"typescript": "^6.0.3"
|
|
78
79
|
},
|
|
79
80
|
"peerDependencies": {
|
|
80
81
|
"vite": "^8.0.0"
|