@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.
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @license
3
- * @qwik.dev/core/testing 2.0.0-beta.24-dev+314726b
3
+ * @qwik.dev/core/testing 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
@@ -24346,6 +24346,9 @@ var ElementVNode = class extends VirtualVNode {
24346
24346
  }
24347
24347
  };
24348
24348
 
24349
+ // packages/qwik/src/core/shared/serdes/inflate.ts
24350
+ import { isServer as isServer9 } from "@qwik.dev/core/build";
24351
+
24349
24352
  // packages/qwik/src/core/shared/serdes/qrl-to-string.ts
24350
24353
  import { isDev as isDev6 } from "@qwik.dev/core/build";
24351
24354
  function qrlToString(serializationContext, qrl, raw) {
@@ -28332,11 +28335,11 @@ function walkCursor(cursor, options) {
28332
28335
  );
28333
28336
  finishWalk(container, cursor, cursorData, isRunningOnServer);
28334
28337
  }
28335
- function finishWalk(container, cursor, cursorData, isServer12) {
28338
+ function finishWalk(container, cursor, cursorData, isServer13) {
28336
28339
  if (!(cursor.dirty & 127 /* DIRTY_MASK */)) {
28337
28340
  removeCursorFromQueue(cursor, container);
28338
28341
  DEBUG6 && console.warn("walkCursor: cursor done", cursor.toString());
28339
- if (!isServer12) {
28342
+ if (!isServer13) {
28340
28343
  executeFlushPhase(cursor, container);
28341
28344
  }
28342
28345
  if (cursorData.extraPromises) {
@@ -29081,12 +29084,7 @@ var Serializer = class {
29081
29084
  value.data.$isConst$
29082
29085
  ]);
29083
29086
  } else if (value instanceof EffectSubscription) {
29084
- this.output(32 /* EffectSubscription */, [
29085
- value.consumer,
29086
- value.property,
29087
- value.backRef,
29088
- value.data
29089
- ]);
29087
+ this.output(32 /* EffectSubscription */, [value.consumer, value.property, value.data]);
29090
29088
  } else if (isStore(value)) {
29091
29089
  const storeHandler = getStoreHandler(value);
29092
29090
  const storeTarget = getStoreTarget(value);
@@ -29156,19 +29154,13 @@ var Serializer = class {
29156
29154
  });
29157
29155
  this.output(2 /* ForwardRef */, forwardRefId);
29158
29156
  } else {
29159
- this.output(26 /* SerializerSignal */, [
29160
- value.$computeQrl$,
29161
- filterEffectBackRefs(value[_EFFECT_BACK_REF]),
29162
- value.$effects$,
29163
- maybeValue
29164
- ]);
29157
+ this.output(26 /* SerializerSignal */, [value.$computeQrl$, value.$effects$, maybeValue]);
29165
29158
  }
29166
29159
  return;
29167
29160
  }
29168
29161
  if (value instanceof WrappedSignalImpl) {
29169
29162
  this.output(23 /* WrappedSignal */, [
29170
29163
  ...serializeWrappingFn(this.$serializationContext$, value),
29171
- filterEffectBackRefs(value[_EFFECT_BACK_REF]),
29172
29164
  value.$flags$,
29173
29165
  value.$hostElement$,
29174
29166
  ...value.$effects$ || []
@@ -29191,11 +29183,7 @@ var Serializer = class {
29191
29183
  } else if (shouldNeverSerialize) {
29192
29184
  v = NEEDS_COMPUTATION;
29193
29185
  }
29194
- const out = [
29195
- value.$computeQrl$,
29196
- filterEffectBackRefs(value[_EFFECT_BACK_REF]),
29197
- value.$effects$
29198
- ];
29186
+ const out = [value.$computeQrl$, value.$effects$];
29199
29187
  if (isAsync) {
29200
29188
  out.push(value.$loadingEffects$, value.$errorEffects$, value.$untrackedError$);
29201
29189
  out.push(asyncFlags || void 0);
@@ -29298,14 +29286,7 @@ var Serializer = class {
29298
29286
  }
29299
29287
  this.output(29 /* JSXNode */, out);
29300
29288
  } else if (value instanceof Task) {
29301
- const out = [
29302
- value.$qrl$,
29303
- value.$flags$,
29304
- value.$index$,
29305
- value.$el$,
29306
- value[_EFFECT_BACK_REF],
29307
- value.$state$
29308
- ];
29289
+ const out = [value.$qrl$, value.$flags$, value.$index$, value.$el$, value.$state$];
29309
29290
  while (out[out.length - 1] === void 0) {
29310
29291
  out.pop();
29311
29292
  }
@@ -29474,18 +29455,6 @@ function serializeWrappingFn(serializationContext, value) {
29474
29455
  );
29475
29456
  return [syncFnId, value.$args$];
29476
29457
  }
29477
- function filterEffectBackRefs(effectBackRef) {
29478
- let effectBackRefToSerialize = void 0;
29479
- if (effectBackRef) {
29480
- for (const [effectProp, effect] of effectBackRef) {
29481
- if (effect.backRef) {
29482
- effectBackRefToSerialize || (effectBackRefToSerialize = /* @__PURE__ */ new Map());
29483
- effectBackRefToSerialize.set(effectProp, effect);
29484
- }
29485
- }
29486
- }
29487
- return effectBackRefToSerialize;
29488
- }
29489
29458
  function tryGetBackRefs(props) {
29490
29459
  return Object.prototype.hasOwnProperty.call(props, QBackRefs) ? props[QBackRefs] : void 0;
29491
29460
  }
@@ -29830,8 +29799,7 @@ var inflate = (container, target, typeId, data) => {
29830
29799
  task.$flags$ = v[1];
29831
29800
  task.$index$ = v[2];
29832
29801
  task.$el$ = v[3];
29833
- task[_EFFECT_BACK_REF] = v[4];
29834
- task.$state$ = v[5];
29802
+ task.$state$ = v[4];
29835
29803
  break;
29836
29804
  case 21 /* Component */:
29837
29805
  target[SERIALIZABLE_STATE][0] = data[0];
@@ -29847,6 +29815,7 @@ var inflate = (container, target, typeId, data) => {
29847
29815
  const storeHandler = getStoreHandler(target);
29848
29816
  storeHandler.$flags$ = flags;
29849
29817
  storeHandler.$effects$ = effects;
29818
+ restoreEffectBackRefForEffectsMap(storeHandler.$effects$, store);
29850
29819
  break;
29851
29820
  }
29852
29821
  case 22 /* Signal */: {
@@ -29854,6 +29823,7 @@ var inflate = (container, target, typeId, data) => {
29854
29823
  const d2 = data;
29855
29824
  signal.$untrackedValue$ = d2[0];
29856
29825
  signal.$effects$ = new Set(d2.slice(1));
29826
+ restoreEffectBackRefForEffects(signal.$effects$, signal);
29857
29827
  break;
29858
29828
  }
29859
29829
  case 23 /* WrappedSignal */: {
@@ -29861,38 +29831,40 @@ var inflate = (container, target, typeId, data) => {
29861
29831
  const d2 = data;
29862
29832
  signal.$func$ = container.getSyncFn(d2[0]);
29863
29833
  signal.$args$ = d2[1];
29864
- signal[_EFFECT_BACK_REF] = d2[2];
29865
29834
  signal.$untrackedValue$ = NEEDS_COMPUTATION;
29866
- signal.$flags$ = d2[3];
29835
+ signal.$flags$ = d2[2];
29867
29836
  signal.$flags$ |= 1 /* INVALID */;
29868
- signal.$hostElement$ = d2[4];
29869
- signal.$effects$ = new Set(d2.slice(5));
29837
+ signal.$hostElement$ = d2[3];
29838
+ signal.$effects$ = new Set(d2.slice(4));
29870
29839
  inflateWrappedSignalValue(signal);
29840
+ restoreEffectBackRefForEffects(signal.$effects$, signal);
29871
29841
  break;
29872
29842
  }
29873
29843
  case 25 /* AsyncSignal */: {
29874
29844
  const asyncSignal = target;
29875
29845
  const d2 = data;
29876
29846
  asyncSignal.$computeQrl$ = d2[0];
29877
- asyncSignal[_EFFECT_BACK_REF] = d2[1];
29878
- asyncSignal.$effects$ = new Set(d2[2]);
29879
- asyncSignal.$loadingEffects$ = new Set(d2[3]);
29880
- asyncSignal.$errorEffects$ = new Set(d2[4]);
29881
- asyncSignal.$untrackedError$ = d2[5];
29882
- asyncSignal.$flags$ = d2[6] ?? 0;
29847
+ asyncSignal.$effects$ = new Set(d2[1]);
29848
+ asyncSignal.$loadingEffects$ = new Set(d2[2]);
29849
+ asyncSignal.$errorEffects$ = new Set(d2[3]);
29850
+ asyncSignal.$untrackedError$ = d2[4];
29851
+ asyncSignal.$flags$ = d2[5] ?? 0;
29883
29852
  if (asyncSignal.$flags$ & 64 /* CLIENT_ONLY */) {
29884
29853
  asyncSignal.$untrackedLoading$ = true;
29885
29854
  }
29886
- const hasValue = d2.length > 7;
29855
+ const hasValue = d2.length > 6;
29887
29856
  if (hasValue) {
29888
- asyncSignal.$untrackedValue$ = d2[7];
29857
+ asyncSignal.$untrackedValue$ = d2[6];
29889
29858
  }
29890
29859
  if (asyncSignal.$untrackedValue$ === NEEDS_COMPUTATION) {
29891
29860
  asyncSignal.$flags$ |= 1 /* INVALID */;
29892
29861
  }
29893
- asyncSignal.interval = d2[8] ?? 0;
29894
- asyncSignal.$concurrency$ = d2[9] ?? 1;
29895
- asyncSignal.$timeoutMs$ = d2[10] ?? 0;
29862
+ asyncSignal.interval = d2[7] ?? 0;
29863
+ asyncSignal.$concurrency$ = d2[8] ?? 1;
29864
+ asyncSignal.$timeoutMs$ = d2[9] ?? 0;
29865
+ restoreEffectBackRefForEffects(asyncSignal.$effects$, asyncSignal);
29866
+ restoreEffectBackRefForEffects(asyncSignal.$loadingEffects$, asyncSignal);
29867
+ restoreEffectBackRefForEffects(asyncSignal.$errorEffects$, asyncSignal);
29896
29868
  break;
29897
29869
  }
29898
29870
  // Inflating a SerializerSignal is the same as inflating a ComputedSignal
@@ -29904,17 +29876,17 @@ var inflate = (container, target, typeId, data) => {
29904
29876
  const p = computed.$computeQrl$.resolve(container).catch(() => {
29905
29877
  });
29906
29878
  loading = loading.finally(() => p);
29907
- computed[_EFFECT_BACK_REF] = d2[1];
29908
- if (d2[2]) {
29909
- computed.$effects$ = new Set(d2[2]);
29879
+ if (d2[1]) {
29880
+ computed.$effects$ = new Set(d2[1]);
29910
29881
  }
29911
- const hasValue = d2.length > 3;
29882
+ const hasValue = d2.length > 2;
29912
29883
  if (hasValue) {
29913
- computed.$untrackedValue$ = d2[3];
29884
+ computed.$untrackedValue$ = d2[2];
29914
29885
  }
29915
29886
  if (typeId !== 26 /* SerializerSignal */ && computed.$untrackedValue$ !== NEEDS_COMPUTATION) {
29916
29887
  computed.$flags$ &= ~1 /* INVALID */;
29917
29888
  }
29889
+ restoreEffectBackRefForEffects(computed.$effects$, computed);
29918
29890
  break;
29919
29891
  }
29920
29892
  case 15 /* Error */: {
@@ -29988,7 +29960,9 @@ var inflate = (container, target, typeId, data) => {
29988
29960
  owner._proxy = propsProxy;
29989
29961
  }
29990
29962
  propsProxy[_OWNER] = owner;
29991
- propsProxy[_PROPS_HANDLER].$effects$ = d[3];
29963
+ const propsHandler = propsProxy[_PROPS_HANDLER];
29964
+ propsHandler.$effects$ = d[3];
29965
+ restoreEffectBackRefForEffectsMap(propsHandler.$effects$, propsProxy);
29992
29966
  break;
29993
29967
  case 31 /* SubscriptionData */: {
29994
29968
  const effectData = target;
@@ -30001,8 +29975,8 @@ var inflate = (container, target, typeId, data) => {
30001
29975
  const d2 = data;
30002
29976
  effectSub.consumer = d2[0];
30003
29977
  effectSub.property = d2[1];
30004
- effectSub.backRef = d2[2];
30005
- effectSub.data = d2[3];
29978
+ effectSub.data = d2[2];
29979
+ restoreEffectBackRefForConsumer(effectSub);
30006
29980
  break;
30007
29981
  }
30008
29982
  default:
@@ -30051,6 +30025,31 @@ function inflateWrappedSignalValue(signal) {
30051
30025
  }
30052
30026
  }
30053
30027
  }
30028
+ function restoreEffectBackRefForConsumer(effect) {
30029
+ var _a6;
30030
+ const isServerSide = import.meta.env.TEST ? isServerPlatform() : isServer9;
30031
+ const consumerBackRef = effect.consumer;
30032
+ if (isServerSide && !consumerBackRef) {
30033
+ return;
30034
+ }
30035
+ consumerBackRef[_a6 = _EFFECT_BACK_REF] || (consumerBackRef[_a6] = /* @__PURE__ */ new Map());
30036
+ consumerBackRef[_EFFECT_BACK_REF].set(effect.property, effect);
30037
+ }
30038
+ function restoreEffectBackRefForEffects(effects, consumer) {
30039
+ if (effects) {
30040
+ for (const effect of effects) {
30041
+ effect.backRef || (effect.backRef = /* @__PURE__ */ new Set());
30042
+ effect.backRef.add(consumer);
30043
+ }
30044
+ }
30045
+ }
30046
+ function restoreEffectBackRefForEffectsMap(effectsMap, consumer) {
30047
+ if (effectsMap) {
30048
+ for (const [, effects] of effectsMap) {
30049
+ restoreEffectBackRefForEffects(effects, consumer);
30050
+ }
30051
+ }
30052
+ }
30054
30053
 
30055
30054
  // packages/qwik/src/core/shared/qrl/qrl-class.ts
30056
30055
  var _captures = null;
@@ -30285,6 +30284,10 @@ var _jsxSplit = (type, varProps, constProps, children, flags, key, dev) => {
30285
30284
  constProps[attr] = constProps[k];
30286
30285
  }
30287
30286
  delete constProps[k];
30287
+ } else if (k === BIND_CHECKED) {
30288
+ bindCheckedSignal = constProps[k];
30289
+ } else if (k === BIND_VALUE) {
30290
+ bindValueSignal = constProps[k];
30288
30291
  }
30289
30292
  processedKeys.add(k);
30290
30293
  }
@@ -30310,40 +30313,59 @@ var _jsxSplit = (type, varProps, constProps, children, flags, key, dev) => {
30310
30313
  }
30311
30314
  processedKeys.add(k);
30312
30315
  }
30313
- if (bindCheckedSignal || bindValueSignal) {
30314
- if (!varPropsCopied) {
30315
- varProps = { ...varProps };
30316
- varPropsCopied = true;
30317
- }
30318
- if (bindCheckedSignal) {
30316
+ }
30317
+ if (bindCheckedSignal || bindValueSignal) {
30318
+ if (!varPropsCopied) {
30319
+ varProps = { ...varProps };
30320
+ varPropsCopied = true;
30321
+ }
30322
+ varProps || (varProps = {});
30323
+ if (bindCheckedSignal) {
30324
+ if (varProps && _hasOwnProperty3.call(varProps, BIND_CHECKED)) {
30319
30325
  delete varProps[BIND_CHECKED];
30320
- varProps.checked = bindCheckedSignal;
30321
- const handler = createQRL(null, "_chk", _chk, null, [bindCheckedSignal]);
30322
- if (constProps && _hasOwnProperty3.call(constProps, "q-e:input")) {
30323
- if (!constPropsCopied) {
30324
- constProps = { ...constProps };
30325
- constPropsCopied = true;
30326
- }
30327
- const existingHandler = constProps["q-e:input"];
30328
- delete constProps["q-e:input"];
30329
- toSort = mergeHandlers(varProps, "q-e:input", existingHandler) || toSort;
30330
- }
30331
- toSort = mergeHandlers(varProps, "q-e:input", handler) || toSort;
30332
- } else if (bindValueSignal) {
30326
+ }
30327
+ if (constProps && _hasOwnProperty3.call(constProps, BIND_CHECKED)) {
30328
+ if (!constPropsCopied) {
30329
+ constProps = { ...constProps };
30330
+ constPropsCopied = true;
30331
+ }
30332
+ delete constProps[BIND_CHECKED];
30333
+ }
30334
+ varProps.checked = bindCheckedSignal;
30335
+ const handler = createQRL(null, "_chk", _chk, null, [bindCheckedSignal]);
30336
+ if (constProps && _hasOwnProperty3.call(constProps, "q-e:input")) {
30337
+ if (!constPropsCopied) {
30338
+ constProps = { ...constProps };
30339
+ constPropsCopied = true;
30340
+ }
30341
+ const existingHandler = constProps["q-e:input"];
30342
+ delete constProps["q-e:input"];
30343
+ toSort = mergeHandlers(varProps, "q-e:input", existingHandler) || toSort;
30344
+ }
30345
+ toSort = mergeHandlers(varProps, "q-e:input", handler) || toSort;
30346
+ } else if (bindValueSignal) {
30347
+ if (varProps && _hasOwnProperty3.call(varProps, BIND_VALUE)) {
30333
30348
  delete varProps[BIND_VALUE];
30334
- varProps.value = bindValueSignal;
30335
- const handler = createQRL(null, "_val", _val, null, [bindValueSignal]);
30336
- if (constProps && _hasOwnProperty3.call(constProps, "q-e:input")) {
30337
- if (!constPropsCopied) {
30338
- constProps = { ...constProps };
30339
- constPropsCopied = true;
30340
- }
30341
- const existingHandler = constProps["q-e:input"];
30342
- delete constProps["q-e:input"];
30343
- toSort = mergeHandlers(varProps, "q-e:input", existingHandler) || toSort;
30349
+ }
30350
+ if (constProps && _hasOwnProperty3.call(constProps, BIND_VALUE)) {
30351
+ if (!constPropsCopied) {
30352
+ constProps = { ...constProps };
30353
+ constPropsCopied = true;
30354
+ }
30355
+ delete constProps[BIND_VALUE];
30356
+ }
30357
+ varProps.value = bindValueSignal;
30358
+ const handler = createQRL(null, "_val", _val, null, [bindValueSignal]);
30359
+ if (constProps && _hasOwnProperty3.call(constProps, "q-e:input")) {
30360
+ if (!constPropsCopied) {
30361
+ constProps = { ...constProps };
30362
+ constPropsCopied = true;
30344
30363
  }
30345
- toSort = mergeHandlers(varProps, "q-e:input", handler) || toSort;
30364
+ const existingHandler = constProps["q-e:input"];
30365
+ delete constProps["q-e:input"];
30366
+ toSort = mergeHandlers(varProps, "q-e:input", existingHandler) || toSort;
30346
30367
  }
30368
+ toSort = mergeHandlers(varProps, "q-e:input", handler) || toSort;
30347
30369
  }
30348
30370
  }
30349
30371
  if (varProps && _hasOwnProperty3.call(varProps, "className")) {
@@ -31331,10 +31353,10 @@ if (isBrowser4) {
31331
31353
  }
31332
31354
 
31333
31355
  // packages/qwik/src/core/use/use-locale.ts
31334
- import { isServer as isServer9 } from "@qwik.dev/core/build";
31356
+ import { isServer as isServer10 } from "@qwik.dev/core/build";
31335
31357
  var _locale = void 0;
31336
31358
  var localAsyncStore;
31337
- if (isServer9) {
31359
+ if (isServer10) {
31338
31360
  import("node:async_hooks").then((module) => {
31339
31361
  localAsyncStore = new module.AsyncLocalStorage();
31340
31362
  }).catch(() => {
@@ -31458,7 +31480,7 @@ var trackSignalAndAssignHost = (value, host, property, container, data) => {
31458
31480
  };
31459
31481
 
31460
31482
  // packages/qwik/src/core/reactive-primitives/impl/store.ts
31461
- import { isDev as isDev21, isServer as isServer10 } from "@qwik.dev/core/build";
31483
+ import { isDev as isDev21, isServer as isServer11 } from "@qwik.dev/core/build";
31462
31484
  var DEBUG7 = false;
31463
31485
  var log6 = (...args) => console.log("STORE", ...args.map(qwikDebugToString));
31464
31486
  var getStoreHandler = (value) => {
@@ -31622,7 +31644,7 @@ function addStoreEffect(target, prop, store, effectSubscription) {
31622
31644
  }
31623
31645
  ensureContainsSubscription(effects, effectSubscription);
31624
31646
  ensureContainsBackRef(effectSubscription, target);
31625
- (import.meta.env.TEST ? !isDomContainer(store.$container$) : isServer10) && addQrlToSerializationCtx(effectSubscription, store.$container$);
31647
+ (import.meta.env.TEST ? !isDomContainer(store.$container$) : isServer11) && addQrlToSerializationCtx(effectSubscription, store.$container$);
31626
31648
  DEBUG7 && log6(
31627
31649
  "sub",
31628
31650
  pad(
@@ -31963,7 +31985,7 @@ var NoSerializeSymbol = /* @__PURE__ */ Symbol("noSerialize");
31963
31985
  var SerializerSymbol = /* @__PURE__ */ Symbol("serialize");
31964
31986
 
31965
31987
  // packages/qwik/src/core/reactive-primitives/utils.ts
31966
- import { isDev as isDev23, isServer as isServer11 } from "@qwik.dev/core/build";
31988
+ import { isDev as isDev23, isServer as isServer12 } from "@qwik.dev/core/build";
31967
31989
  var DEBUG8 = false;
31968
31990
  var log7 = (...args) => console.log("SIGNAL", ...args.map(qwikDebugToString));
31969
31991
  var throwIfQRLNotResolved = (qrl) => {
@@ -31999,7 +32021,7 @@ var addQrlToSerializationCtx = (effectSubscriber, container) => {
31999
32021
  }
32000
32022
  };
32001
32023
  var scheduleEffects = (container, signal, effects) => {
32002
- const isBrowser5 = import.meta.env.TEST ? !isServerPlatform() : !isServer11;
32024
+ const isBrowser5 = import.meta.env.TEST ? !isServerPlatform() : !isServer12;
32003
32025
  if (effects) {
32004
32026
  const scheduleEffect = (effectSubscription) => {
32005
32027
  const consumer = effectSubscription.consumer;
@@ -33488,6 +33510,15 @@ function materializeFromVNodeData(vParent, vData, element, child) {
33488
33510
  vnode_ensureElementKeyInflated(elementVNode);
33489
33511
  addVNode(elementVNode);
33490
33512
  child = fastNextSibling(child);
33513
+ while (
33514
+ // skip only elements, not text nodes
33515
+ isElement(child) && shouldSkipElement(child)
33516
+ ) {
33517
+ child = fastNextSibling(child);
33518
+ if (!child && value > 0) {
33519
+ throw qError(27 /* materializeVNodeDataError */, [vData, peek(), nextToConsumeIdx]);
33520
+ }
33521
+ }
33491
33522
  }
33492
33523
  } else if (peek() === VNodeDataChar.SCOPED_STYLE) {
33493
33524
  vnode_setProp(vParent, QScopedStyle, consumeValue());
@@ -34209,10 +34240,7 @@ function diffJsxVNode(received, expected, path = [], container, isSsr) {
34209
34240
  return [path.join(" > ") + " missing"];
34210
34241
  }
34211
34242
  if (!container.qContainer) {
34212
- try {
34213
- _getDomContainer(container);
34214
- } catch {
34215
- }
34243
+ _getDomContainer(container);
34216
34244
  }
34217
34245
  const diffs = [];
34218
34246
  if (typeof expected === "string") {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qwik.dev/core/testing",
3
- "version": "2.0.0-beta.24-dev+314726b",
3
+ "version": "2.0.0-beta.25-dev+2677279",
4
4
  "main": "index.mjs",
5
5
  "types": "index.d.ts",
6
6
  "private": true,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@qwik.dev/core",
3
3
  "description": "An open source framework for building instant loading web apps at any scale, without the extra effort.",
4
- "version": "2.0.0-beta.24",
4
+ "version": "2.0.0-beta.25",
5
5
  "author": "Qwik Team",
6
6
  "bin": {
7
7
  "qwik": "./qwik-cli.mjs"
@@ -21,7 +21,7 @@
21
21
  "kleur": "4.1.5",
22
22
  "prettier": "3.7.4",
23
23
  "vitest": "4.0.16",
24
- "@qwik.dev/core": "2.0.0-beta.24",
24
+ "@qwik.dev/core": "2.0.0-beta.25",
25
25
  "@qwik.dev/dom": "2.1.19"
26
26
  },
27
27
  "engines": {