@absolutejs/absolute 0.19.0-beta.834 → 0.19.0-beta.836

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.
@@ -10,6 +10,7 @@ type ModuleServerConfig = {
10
10
  };
11
11
  stylePreprocessors?: StylePreprocessorConfig;
12
12
  };
13
+ export declare const warnIfReactFastRefreshUnsupported: () => void;
13
14
  export declare const warmCompilers: (frameworks: {
14
15
  svelte?: boolean;
15
16
  vue?: boolean;
@@ -6,6 +6,11 @@ export type ErrorOverlayOptions = {
6
6
  line?: number;
7
7
  lineText?: string;
8
8
  message?: string;
9
+ /** Full Error.stack (or pre-formatted multi-line trace). Optional —
10
+ * if `message` already starts with the error name + first line of
11
+ * the stack (e.g. `${err.name}: ${err.message}\n${err.stack}`), the
12
+ * overlay deduplicates internally. */
13
+ stack?: string;
9
14
  };
10
15
  export type DOMStateEntry = {
11
16
  checked?: boolean;
package/package.json CHANGED
@@ -384,5 +384,5 @@
384
384
  ]
385
385
  }
386
386
  },
387
- "version": "0.19.0-beta.834"
387
+ "version": "0.19.0-beta.836"
388
388
  }