@qwik.dev/core 2.0.0-beta.28 → 2.0.0-beta.29
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/bindings/qwik.darwin-arm64.node +0 -0
- package/bindings/qwik.linux-x64-gnu.node +0 -0
- package/bindings/qwik.win32-x64-msvc.node +0 -0
- package/bindings/qwik_wasm_bg.wasm +0 -0
- package/dist/backpatch/package.json +1 -1
- package/dist/build/package.json +1 -1
- package/dist/cli.mjs +2 -2
- package/dist/core-internal.d.ts +81 -10
- package/dist/core.min.mjs +1 -1
- package/dist/core.mjs +431 -201
- package/dist/core.mjs.map +1 -1
- package/dist/core.prod.mjs +2440 -2309
- package/dist/loader/package.json +1 -1
- package/dist/optimizer.mjs +2 -2
- package/dist/server.mjs +2 -2
- package/dist/server.prod.mjs +254 -254
- package/dist/testing/index.d.ts +42 -8
- package/dist/testing/index.mjs +407 -291
- package/dist/testing/package.json +1 -1
- package/package.json +2 -2
- package/public.d.ts +1 -0
package/dist/loader/package.json
CHANGED
package/dist/optimizer.mjs
CHANGED
|
@@ -344,7 +344,7 @@ const Tt = () => typeof Deno < "u" ? "deno" : typeof Bun < "u" ? "bun" : typeof
|
|
|
344
344
|
r != null && (t[i] = r);
|
|
345
345
|
}), t.entryStrategy = e.entryStrategy?.type ?? "smart", t.manualChunks = e.entryStrategy?.manual ?? void 0, t;
|
|
346
346
|
}, zr = {
|
|
347
|
-
qwik: "2.0.0-beta.
|
|
347
|
+
qwik: "2.0.0-beta.29-dev+bc61b71"
|
|
348
348
|
}, zt = (e, t = 0) => {
|
|
349
349
|
for (let i = 0; i < e.length; i++) {
|
|
350
350
|
const r = e.charCodeAt(i);
|
|
@@ -2671,7 +2671,7 @@ function Wr(e = {}) {
|
|
|
2671
2671
|
async config(c, w) {
|
|
2672
2672
|
await s.init();
|
|
2673
2673
|
let x;
|
|
2674
|
-
|
|
2674
|
+
w.mode === "lib" ? x = "lib" : c.build?.ssr || w.mode === "ssr" ? x = "ssr" : w.mode === "test" ? x = "test" : x = "client", t = w.command, w.mode === "production" ? b = "production" : w.mode === "development" ? b = "development" : t === "build" && x === "client" ? b = "production" : b = "development", s.debug(`vite config(), command: ${t}, env.mode: ${w.mode}`), t === "serve" ? e.entryStrategy = { type: "segment" } : x === "ssr" ? e.entryStrategy = { type: "hoist" } : x === "lib" && (e.entryStrategy = { type: "inline" });
|
|
2675
2675
|
const N = x === "ssr" ? typeof c.build?.ssr == "string" ? c.build.ssr : e.ssr?.input : void 0, D = x === "client" ? e.client?.input : void 0;
|
|
2676
2676
|
let T = c.build?.rollupOptions?.input || D || N;
|
|
2677
2677
|
T && typeof T == "string" && (T = [T]), l = c.build?.assetsDir;
|
package/dist/server.mjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
|
-
* @qwik.dev/core/server 2.0.0-beta.
|
|
3
|
+
* @qwik.dev/core/server 2.0.0-beta.29-dev+bc61b71
|
|
4
4
|
* Copyright QwikDev. All Rights Reserved.
|
|
5
5
|
* Use of this source code is governed by an MIT-style license that can be
|
|
6
6
|
* found in the LICENSE file at https://github.com/QwikDev/qwik/blob/main/LICENSE
|
|
@@ -1219,7 +1219,7 @@ function getBuildBase(opts) {
|
|
|
1219
1219
|
return `${import.meta.env.BASE_URL || "/"}build/`;
|
|
1220
1220
|
}
|
|
1221
1221
|
var versions = {
|
|
1222
|
-
qwik: "2.0.0-beta.
|
|
1222
|
+
qwik: "2.0.0-beta.29-dev+bc61b71",
|
|
1223
1223
|
qwikDom: "2.1.19"
|
|
1224
1224
|
};
|
|
1225
1225
|
|