@absolutejs/absolute 0.19.0-beta.15 → 0.19.0-beta.16
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 +4 -3
- package/dist/build.js.map +3 -3
- package/dist/dev/client/handlers/react.ts +9 -7
- package/dist/index.js +4 -3
- package/dist/index.js.map +3 -3
- package/native/packages/darwin-arm64/fast_ops.dylib +0 -0
- package/native/packages/darwin-arm64/package.json +1 -1
- package/native/packages/darwin-x64/fast_ops.dylib +0 -0
- package/native/packages/darwin-x64/package.json +1 -1
- package/native/packages/linux-arm64/package.json +1 -1
- package/native/packages/linux-x64/fast_ops.so +0 -0
- package/native/packages/linux-x64/package.json +1 -1
- package/package.json +5 -5
package/dist/build.js
CHANGED
|
@@ -202800,6 +202800,7 @@ var parseErrorLocationFromMessage = (msg) => {
|
|
|
202800
202800
|
if (changedFile) {
|
|
202801
202801
|
const pageModuleUrl = await getReactModuleUrl(changedFile);
|
|
202802
202802
|
if (pageModuleUrl) {
|
|
202803
|
+
const serverDuration = Date.now() - startTime;
|
|
202803
202804
|
state.lastHmrPath = changedFile;
|
|
202804
202805
|
state.lastHmrFramework = "react";
|
|
202805
202806
|
broadcastToClients(state, {
|
|
@@ -202810,8 +202811,8 @@ var parseErrorLocationFromMessage = (msg) => {
|
|
|
202810
202811
|
manifest: state.manifest,
|
|
202811
202812
|
pageModuleUrl,
|
|
202812
202813
|
primarySource: changedFile,
|
|
202813
|
-
|
|
202814
|
-
|
|
202814
|
+
serverDuration,
|
|
202815
|
+
sourceFiles: reactFiles
|
|
202815
202816
|
},
|
|
202816
202817
|
type: "react-update"
|
|
202817
202818
|
});
|
|
@@ -203893,5 +203894,5 @@ export {
|
|
|
203893
203894
|
build
|
|
203894
203895
|
};
|
|
203895
203896
|
|
|
203896
|
-
//# debugId=
|
|
203897
|
+
//# debugId=150BC8C8F3176CC564756E2164756E21
|
|
203897
203898
|
//# sourceMappingURL=build.js.map
|