@absolutejs/absolute 0.19.0-beta.92 → 0.19.0-beta.93
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/.absolutejs/tsconfig.tsbuildinfo +1 -1
- package/dist/build.js +2 -17
- package/dist/build.js.map +3 -3
- package/dist/dev/client/handlers/rebuild.ts +10 -0
- package/dist/index.js +2 -17
- package/dist/index.js.map +3 -3
- package/package.json +1 -1
package/dist/build.js
CHANGED
|
@@ -204407,6 +204407,7 @@ var moduleServerPromise, getModuleServer = () => moduleServerPromise, parseError
|
|
|
204407
204407
|
broadcastToClients(state, {
|
|
204408
204408
|
data: {
|
|
204409
204409
|
affectedFrameworks,
|
|
204410
|
+
fullReload: wasSubprocess,
|
|
204410
204411
|
manifest
|
|
204411
204412
|
},
|
|
204412
204413
|
message: "Rebuild completed successfully",
|
|
@@ -204415,22 +204416,6 @@ var moduleServerPromise, getModuleServer = () => moduleServerPromise, parseError
|
|
|
204415
204416
|
if (filesToRebuild && filesToRebuild.length > 0 && !wasSubprocess) {
|
|
204416
204417
|
await handleFullBuildHMR(state, config, affectedFrameworks, filesToRebuild, manifest, duration);
|
|
204417
204418
|
}
|
|
204418
|
-
if (wasSubprocess) {
|
|
204419
|
-
const pageKey = "DocumentationIndex";
|
|
204420
|
-
const reactFiles = (filesToRebuild ?? []).filter((f) => detectFramework(f, state.resolvedPaths) === "react");
|
|
204421
|
-
const primarySource = reactFiles.find((f) => f.endsWith(".ts") && !f.endsWith(".d.ts"));
|
|
204422
|
-
broadcastToClients(state, {
|
|
204423
|
-
data: {
|
|
204424
|
-
framework: "react",
|
|
204425
|
-
hasComponentChanges: true,
|
|
204426
|
-
hasCSSChanges: false,
|
|
204427
|
-
manifest,
|
|
204428
|
-
primarySource,
|
|
204429
|
-
sourceFiles: reactFiles
|
|
204430
|
-
},
|
|
204431
|
-
type: "react-update"
|
|
204432
|
-
});
|
|
204433
|
-
}
|
|
204434
204419
|
if (!wasSubprocess)
|
|
204435
204420
|
broadcastFrameworkUpdates(state, affectedFrameworks, filesToRebuild, manifest, startTime);
|
|
204436
204421
|
if (affectedFrameworks.includes("angular")) {
|
|
@@ -204937,5 +204922,5 @@ export {
|
|
|
204937
204922
|
build
|
|
204938
204923
|
};
|
|
204939
204924
|
|
|
204940
|
-
//# debugId=
|
|
204925
|
+
//# debugId=6043C55BFB4ADA3C64756E2164756E21
|
|
204941
204926
|
//# sourceMappingURL=build.js.map
|