@absolutejs/absolute 0.19.0-beta.13 → 0.19.0-beta.14
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 -4
- package/dist/build.js.map +3 -3
- package/dist/dev/client/handlers/react.ts +13 -3
- package/dist/index.js +4 -4
- 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
|
@@ -202790,8 +202790,7 @@ var parseErrorLocationFromMessage = (msg) => {
|
|
|
202790
202790
|
if (changedFile) {
|
|
202791
202791
|
const pageModuleUrl = await getReactModuleUrl(changedFile);
|
|
202792
202792
|
if (pageModuleUrl) {
|
|
202793
|
-
|
|
202794
|
-
logHmrUpdate(changedFile, "react", duration2);
|
|
202793
|
+
logHmrUpdate(changedFile, "react", Date.now() - startTime);
|
|
202795
202794
|
broadcastToClients(state, {
|
|
202796
202795
|
data: {
|
|
202797
202796
|
framework: "react",
|
|
@@ -202800,7 +202799,8 @@ var parseErrorLocationFromMessage = (msg) => {
|
|
|
202800
202799
|
manifest: state.manifest,
|
|
202801
202800
|
pageModuleUrl,
|
|
202802
202801
|
primarySource: changedFile,
|
|
202803
|
-
sourceFiles: reactFiles
|
|
202802
|
+
sourceFiles: reactFiles,
|
|
202803
|
+
startTime
|
|
202804
202804
|
},
|
|
202805
202805
|
type: "react-update"
|
|
202806
202806
|
});
|
|
@@ -203882,5 +203882,5 @@ export {
|
|
|
203882
203882
|
build
|
|
203883
203883
|
};
|
|
203884
203884
|
|
|
203885
|
-
//# debugId=
|
|
203885
|
+
//# debugId=399551415B4FE8B664756E2164756E21
|
|
203886
203886
|
//# sourceMappingURL=build.js.map
|