eddev 2.0.0-beta.3 → 2.0.0-beta.4
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.
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const VERSION = "2.0.0-beta.
|
|
1
|
+
export declare const VERSION = "2.0.0-beta.4";
|
package/dist/node/cli/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = "2.0.0-beta.
|
|
1
|
+
export const VERSION = "2.0.0-beta.4";
|
|
@@ -63,14 +63,14 @@ export function getViteConfig(args) {
|
|
|
63
63
|
"process.env.NODE_ENV": JSON.stringify(args.mode),
|
|
64
64
|
// ssrLoadModule: "() => Promise.resolve({})",
|
|
65
65
|
},
|
|
66
|
-
|
|
67
|
-
//
|
|
68
|
-
//
|
|
69
|
-
//
|
|
70
|
-
//
|
|
71
|
-
//
|
|
72
|
-
//
|
|
73
|
-
|
|
66
|
+
optimizeDeps: {
|
|
67
|
+
// force: true,
|
|
68
|
+
// holdUntilCrawlEnd: true,
|
|
69
|
+
// include: ["zustand"],
|
|
70
|
+
// noDiscovery: true,
|
|
71
|
+
// exclude: ["react-external.js", "react-dom-external.js", "react", "react-dom"],
|
|
72
|
+
// esbuildOptions: {},
|
|
73
|
+
},
|
|
74
74
|
resolve: {
|
|
75
75
|
alias: [
|
|
76
76
|
{ find: "@manifest/blocks", replacement: join(args.project.rootDir, "__block-manifest.js") },
|
|
@@ -271,6 +271,14 @@ export function getViteConfig(args) {
|
|
|
271
271
|
}
|
|
272
272
|
: undefined,
|
|
273
273
|
},
|
|
274
|
+
sourcemap: true,
|
|
275
|
+
minify: args.mode === "production",
|
|
276
|
+
modulePreload: false,
|
|
277
|
+
outDir: args.outDir,
|
|
278
|
+
watch: {},
|
|
279
|
+
commonjsOptions: {
|
|
280
|
+
exclude: ["eddev"],
|
|
281
|
+
},
|
|
274
282
|
}
|
|
275
283
|
: {
|
|
276
284
|
manifest: true,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eddev",
|
|
3
|
-
"version": "2.0.0-beta.
|
|
3
|
+
"version": "2.0.0-beta.4",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -111,7 +111,7 @@
|
|
|
111
111
|
"undent": "^0.1.0",
|
|
112
112
|
"use-zustand": "^0.2.0",
|
|
113
113
|
"valtio": "^1.13.2",
|
|
114
|
-
"vite": "5.3
|
|
114
|
+
"vite": "^5.4.3",
|
|
115
115
|
"vite-tsconfig-paths": "^4.2.1",
|
|
116
116
|
"zod": "^3.22.4",
|
|
117
117
|
"zod-to-json-schema": "^3.21.4",
|