@absolutejs/absolute 0.19.0-beta.834 → 0.19.0-beta.835
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/dist/angular/components/core/streamingSlotRegistrar.js +1 -1
- package/dist/angular/components/core/streamingSlotRegistry.js +2 -2
- package/dist/build.js +4 -2
- package/dist/build.js.map +4 -4
- package/dist/index.js +4 -2
- package/dist/index.js.map +4 -4
- package/dist/src/dev/moduleServer.d.ts +1 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -15357,6 +15357,7 @@ var init_ssrCache = __esm(() => {
|
|
|
15357
15357
|
// src/dev/moduleServer.ts
|
|
15358
15358
|
var exports_moduleServer = {};
|
|
15359
15359
|
__export(exports_moduleServer, {
|
|
15360
|
+
warnIfReactFastRefreshUnsupported: () => warnIfReactFastRefreshUnsupported,
|
|
15360
15361
|
warmCompilers: () => warmCompilers,
|
|
15361
15362
|
warmCache: () => warmCache,
|
|
15362
15363
|
setGlobalModuleServer: () => setGlobalModuleServer,
|
|
@@ -15536,7 +15537,6 @@ ${code}`;
|
|
|
15536
15537
|
reactFastRefreshWarningEmitted = true;
|
|
15537
15538
|
logWarn("React HMR is blocked: this Bun build ignores " + "`reactFastRefresh` on Bun.Transpiler, so component state " + "cannot be preserved across edits. Tracking " + "https://github.com/oven-sh/bun/pull/28312 \u2014 if it still has " + "not merged, leave a \uD83D\uDC4D on the PR so the Bun team knows it " + "is blocking you. Until then, React edits trigger a full " + "reload instead of a fast refresh.");
|
|
15538
15539
|
}, transformReactFile = (filePath, projectRoot, rewriter) => {
|
|
15539
|
-
warnIfReactFastRefreshUnsupported();
|
|
15540
15540
|
const raw = readFileSync16(filePath, "utf-8");
|
|
15541
15541
|
const valueExports = tsxTranspiler.scan(raw).exports;
|
|
15542
15542
|
let transpiled = reactTranspiler.transformSync(raw);
|
|
@@ -16677,6 +16677,8 @@ var moduleServerPromise, getModuleServer = () => moduleServerPromise, runSequent
|
|
|
16677
16677
|
onRebuildComplete({ hmrState: state, manifest: state.manifest });
|
|
16678
16678
|
return state.manifest;
|
|
16679
16679
|
}
|
|
16680
|
+
const { warnIfReactFastRefreshUnsupported: warnIfReactFastRefreshUnsupported2 } = await Promise.resolve().then(() => (init_moduleServer(), exports_moduleServer));
|
|
16681
|
+
warnIfReactFastRefreshUnsupported2();
|
|
16680
16682
|
return handleReactModuleServerPath(state, reactFiles, startTime, onRebuildComplete);
|
|
16681
16683
|
}, handleServerManifestUpdate = (state, serverResult) => {
|
|
16682
16684
|
if (!serverResult?.success) {
|
|
@@ -26749,5 +26751,5 @@ export {
|
|
|
26749
26751
|
ANGULAR_INIT_TIMEOUT_MS
|
|
26750
26752
|
};
|
|
26751
26753
|
|
|
26752
|
-
//# debugId=
|
|
26754
|
+
//# debugId=499C2EC83121D7CA64756E2164756E21
|
|
26753
26755
|
//# sourceMappingURL=index.js.map
|