@qwik.dev/core 2.0.0-beta.29 → 2.0.0-beta.30

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.
@@ -5,8 +5,8 @@
5
5
  "deploy": "netlify deploy --build"
6
6
  },
7
7
  "devDependencies": {
8
- "@netlify/edge-functions": "^2.0.0",
9
- "netlify-cli": "^15.0.0"
8
+ "@netlify/edge-functions": "^3.0.6",
9
+ "netlify-cli": "^24.5.1"
10
10
  },
11
11
  "__qwik__": {
12
12
  "priority": 30,
@@ -47,7 +47,8 @@ declare const enum ChoreBits {
47
47
  COMPUTE = 16,
48
48
  CHILDREN = 32,
49
49
  CLEANUP = 64,
50
- DIRTY_MASK = 127
50
+ RECONCILE = 128,
51
+ DIRTY_MASK = 255
51
52
  }
52
53
 
53
54
  /** @internal */
@@ -855,6 +856,8 @@ declare class Task<T = unknown, B = T> extends BackRef implements DescriptorBase
855
856
  $qrl$: QRLInternal<T>;
856
857
  $state$: Signal<B> | undefined;
857
858
  $destroy$: (() => void) | null;
859
+ $destroyPromise$: Promise<void> | undefined;
860
+ $taskPromise$: Promise<void> | null;
858
861
  constructor($flags$: number, $index$: number, $el$: HostElement, $qrl$: QRLInternal<T>, $state$: Signal<B> | undefined, $destroy$: (() => void) | null);
859
862
  }
860
863