@qwik.dev/core 2.0.0-beta.25 → 2.0.0-beta.26
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/backpatch/package.json +1 -1
- package/dist/build/package.json +1 -1
- package/dist/cli.mjs +2 -2
- package/dist/core-internal.d.ts +1 -1
- package/dist/core.min.mjs +1 -1
- package/dist/core.mjs +116 -38
- package/dist/core.mjs.map +1 -1
- package/dist/core.prod.mjs +85 -62
- package/dist/loader/package.json +1 -1
- package/dist/optimizer.mjs +320 -319
- package/dist/server.mjs +3 -17
- package/dist/starters/adapters/fastify/package.json +1 -1
- package/dist/testing/index.mjs +74 -60
- package/dist/testing/package.json +1 -1
- package/package.json +3 -3
package/dist/build/package.json
CHANGED
package/dist/cli.mjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
|
-
* @qwik.dev/core/cli 2.0.0-beta.
|
|
3
|
+
* @qwik.dev/core/cli 2.0.0-beta.26-dev+c693cf5
|
|
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
|
|
@@ -12908,7 +12908,7 @@ async function printHelp(app) {
|
|
|
12908
12908
|
await runCommand2(Object.assign(app, { task: args[0], args }));
|
|
12909
12909
|
}
|
|
12910
12910
|
function printVersion() {
|
|
12911
|
-
console.log("2.0.0-beta.
|
|
12911
|
+
console.log("2.0.0-beta.26-dev+c693cf5");
|
|
12912
12912
|
}
|
|
12913
12913
|
export {
|
|
12914
12914
|
runCli,
|
package/dist/core-internal.d.ts
CHANGED
|
@@ -4679,7 +4679,7 @@ export declare const _VAR_PROPS: unique symbol;
|
|
|
4679
4679
|
export declare const _verifySerializable: <T>(value: T, preMessage?: string) => T;
|
|
4680
4680
|
|
|
4681
4681
|
/**
|
|
4682
|
-
* 2.0.0-beta.
|
|
4682
|
+
* 2.0.0-beta.26-dev+c693cf5
|
|
4683
4683
|
*
|
|
4684
4684
|
* @public
|
|
4685
4685
|
*/
|