@absolutejs/absolute 0.19.0-beta.63 → 0.19.0-beta.64
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/.claude/settings.local.json +3 -1
- package/dist/build.js +6 -1
- package/dist/build.js.map +3 -3
- package/dist/dev/client/handlers/react.ts +54 -28
- package/dist/index.js +6 -1
- package/dist/index.js.map +3 -3
- package/package.json +1 -1
|
@@ -218,7 +218,9 @@
|
|
|
218
218
|
"Bash(kill 881290)",
|
|
219
219
|
"Bash(sed -i 's/\"\"\"\"@absolutejs\\\\/absolute\"\"\"\": \"\"\"\"0.19.0-beta.60\"\"\"\"/\"\"\"\"@absolutejs\\\\/absolute\"\"\"\": \"\"\"\"0.19.0-beta.61\"\"\"\"/' package.json)",
|
|
220
220
|
"Bash(kill 883998)",
|
|
221
|
-
"Bash(sed -i 's/\"\"\"\"@absolutejs\\\\/absolute\"\"\"\": \"\"\"\"0.19.0-beta.61\"\"\"\"/\"\"\"\"@absolutejs\\\\/absolute\"\"\"\": \"\"\"\"0.19.0-beta.62\"\"\"\"/' package.json)"
|
|
221
|
+
"Bash(sed -i 's/\"\"\"\"@absolutejs\\\\/absolute\"\"\"\": \"\"\"\"0.19.0-beta.61\"\"\"\"/\"\"\"\"@absolutejs\\\\/absolute\"\"\"\": \"\"\"\"0.19.0-beta.62\"\"\"\"/' package.json)",
|
|
222
|
+
"Bash(kill 892052)",
|
|
223
|
+
"Bash(sed -i 's/\"\"\"\"@absolutejs\\\\/absolute\"\"\"\": \"\"\"\"0.19.0-beta.62\"\"\"\"/\"\"\"\"@absolutejs\\\\/absolute\"\"\"\": \"\"\"\"0.19.0-beta.63\"\"\"\"/' package.json)"
|
|
222
224
|
]
|
|
223
225
|
}
|
|
224
226
|
}
|
package/dist/build.js
CHANGED
|
@@ -203476,12 +203476,17 @@ var moduleServerPromise, getModuleServer = () => moduleServerPromise, parseError
|
|
|
203476
203476
|
}
|
|
203477
203477
|
}
|
|
203478
203478
|
const pageModuleUrl = await getReactModuleUrl(broadcastFile);
|
|
203479
|
+
let dataModuleUrl;
|
|
203480
|
+
if (!isComponentFile && broadcastFile !== primaryFile) {
|
|
203481
|
+
dataModuleUrl = await getReactModuleUrl(primaryFile);
|
|
203482
|
+
}
|
|
203479
203483
|
if (pageModuleUrl) {
|
|
203480
203484
|
const serverDuration = Date.now() - startTime;
|
|
203481
203485
|
state.lastHmrPath = relative9(process.cwd(), primaryFile).replace(/\\/g, "/");
|
|
203482
203486
|
state.lastHmrFramework = "react";
|
|
203483
203487
|
broadcastToClients(state, {
|
|
203484
203488
|
data: {
|
|
203489
|
+
dataModuleUrl,
|
|
203485
203490
|
framework: "react",
|
|
203486
203491
|
hasComponentChanges: true,
|
|
203487
203492
|
hasCSSChanges: false,
|
|
@@ -204857,5 +204862,5 @@ export {
|
|
|
204857
204862
|
build
|
|
204858
204863
|
};
|
|
204859
204864
|
|
|
204860
|
-
//# debugId=
|
|
204865
|
+
//# debugId=97FF81EE2B472F2864756E2164756E21
|
|
204861
204866
|
//# sourceMappingURL=build.js.map
|