@qwik.dev/core 2.0.0-beta.24 → 2.0.0-beta.25
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 +6 -4
- package/dist/core.min.mjs +1 -1
- package/dist/core.mjs +137 -98
- package/dist/core.mjs.map +1 -1
- package/dist/core.prod.mjs +127 -80
- package/dist/loader/package.json +1 -1
- package/dist/optimizer.mjs +1 -1
- package/dist/server.mjs +2 -2
- package/dist/testing/index.d.ts +133 -2
- package/dist/testing/index.mjs +134 -106
- package/dist/testing/package.json +1 -1
- package/package.json +2 -2
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
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.25-dev+2677279
|
|
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.25-dev+2677279");
|
|
12912
12912
|
}
|
|
12913
12913
|
export {
|
|
12914
12914
|
runCli,
|
package/dist/core-internal.d.ts
CHANGED
|
@@ -1212,6 +1212,8 @@ export declare const _dumpState: (state: unknown[], color?: boolean, prefix?: st
|
|
|
1212
1212
|
/** @internal */
|
|
1213
1213
|
export declare const _EFFECT_BACK_REF: unique symbol;
|
|
1214
1214
|
|
|
1215
|
+
declare type EffectBackRef = SignalImpl | StoreTarget | PropsProxy;
|
|
1216
|
+
|
|
1215
1217
|
declare const enum EffectProperty {
|
|
1216
1218
|
COMPONENT = ":",
|
|
1217
1219
|
VNODE = "."
|
|
@@ -1256,9 +1258,9 @@ declare const enum EffectProperty {
|
|
|
1256
1258
|
declare class EffectSubscription {
|
|
1257
1259
|
consumer: Consumer;
|
|
1258
1260
|
property: EffectProperty | string;
|
|
1259
|
-
backRef: Set<
|
|
1261
|
+
backRef: Set<EffectBackRef> | null;
|
|
1260
1262
|
data: _SubscriptionData | null;
|
|
1261
|
-
constructor(consumer: Consumer, property: EffectProperty | string, backRef?: Set<
|
|
1263
|
+
constructor(consumer: Consumer, property: EffectProperty | string, backRef?: Set<EffectBackRef> | null, data?: _SubscriptionData | null);
|
|
1262
1264
|
}
|
|
1263
1265
|
|
|
1264
1266
|
/** @internal */
|
|
@@ -1956,7 +1958,7 @@ export declare const _noopQrlDEV: <T>(symbolName: string, opts: QRLDev, lexicalS
|
|
|
1956
1958
|
* @see noSerialize
|
|
1957
1959
|
*/
|
|
1958
1960
|
export declare type NoSerialize<T> = (T & {
|
|
1959
|
-
__no_serialize__
|
|
1961
|
+
__no_serialize__?: true;
|
|
1960
1962
|
}) | undefined;
|
|
1961
1963
|
|
|
1962
1964
|
/**
|
|
@@ -4677,7 +4679,7 @@ export declare const _VAR_PROPS: unique symbol;
|
|
|
4677
4679
|
export declare const _verifySerializable: <T>(value: T, preMessage?: string) => T;
|
|
4678
4680
|
|
|
4679
4681
|
/**
|
|
4680
|
-
* 2.0.0-beta.
|
|
4682
|
+
* 2.0.0-beta.25-dev+2677279
|
|
4681
4683
|
*
|
|
4682
4684
|
* @public
|
|
4683
4685
|
*/
|