@qwik.dev/core 2.0.0-alpha.4 → 2.0.0-alpha.5
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.darwin-x64.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/build/package.json +1 -1
- package/dist/cli.cjs +2 -2
- package/dist/core-internal.d.ts +2 -2
- package/dist/core.cjs +196 -106
- package/dist/core.cjs.map +1 -1
- package/dist/core.min.mjs +1 -1
- package/dist/core.mjs +196 -106
- package/dist/core.mjs.map +1 -1
- package/dist/core.prod.cjs +297 -234
- package/dist/core.prod.mjs +297 -229
- package/dist/insights/index.qwik.cjs +1 -1
- package/dist/insights/index.qwik.mjs +1 -1
- package/dist/loader/package.json +1 -1
- package/dist/optimizer.cjs +152 -78
- package/dist/optimizer.mjs +157 -80
- package/dist/prefetch/package.json +1 -1
- package/dist/server.cjs +188 -98
- package/dist/server.mjs +187 -97
- package/dist/testing/index.cjs +186 -96
- package/dist/testing/index.mjs +185 -95
- package/dist/testing/package.json +1 -1
- package/package.json +2 -2
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/dist/build/package.json
CHANGED
package/dist/cli.cjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
|
-
* @qwik.dev/core/cli 2.0.0-alpha.
|
|
3
|
+
* @qwik.dev/core/cli 2.0.0-alpha.5-dev+cb53bbd
|
|
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
|
|
@@ -5534,7 +5534,7 @@ async function printHelp(app) {
|
|
|
5534
5534
|
await runCommand2(Object.assign(app, { task: args[0], args }));
|
|
5535
5535
|
}
|
|
5536
5536
|
function printVersion() {
|
|
5537
|
-
console.log("2.0.0-alpha.
|
|
5537
|
+
console.log("2.0.0-alpha.5-dev+cb53bbd");
|
|
5538
5538
|
}
|
|
5539
5539
|
// Annotate the CommonJS export names for ESM import in node:
|
|
5540
5540
|
0 && (module.exports = {
|
package/dist/core-internal.d.ts
CHANGED
|
@@ -2752,7 +2752,7 @@ export declare interface StreamWriter {
|
|
|
2752
2752
|
export declare type _Stringifiable = string | boolean | number | null;
|
|
2753
2753
|
|
|
2754
2754
|
declare abstract class Subscriber {
|
|
2755
|
-
$effectDependencies$: Subscriber[] | null;
|
|
2755
|
+
$effectDependencies$: (Subscriber | TargetType)[] | null;
|
|
2756
2756
|
}
|
|
2757
2757
|
|
|
2758
2758
|
/**
|
|
@@ -3732,7 +3732,7 @@ export declare const _VAR_PROPS: unique symbol;
|
|
|
3732
3732
|
export declare const _verifySerializable: <T>(value: T, preMessage?: string) => T;
|
|
3733
3733
|
|
|
3734
3734
|
/**
|
|
3735
|
-
* 2.0.0-alpha.
|
|
3735
|
+
* 2.0.0-alpha.5-dev+cb53bbd
|
|
3736
3736
|
*
|
|
3737
3737
|
* @public
|
|
3738
3738
|
*/
|