@absolutejs/absolute 0.19.0-beta.56 → 0.19.0-beta.57
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 +8 -3
- package/dist/build.js.map +3 -3
- package/dist/index.js +8 -3
- package/dist/index.js.map +3 -3
- package/package.json +1 -1
|
@@ -206,7 +206,9 @@
|
|
|
206
206
|
"Bash(kill 852179)",
|
|
207
207
|
"Bash(sed -i 's/\"\"\"\"@absolutejs\\\\/absolute\"\"\"\": \"\"\"\"0.19.0-beta.53\"\"\"\"/\"\"\"\"@absolutejs\\\\/absolute\"\"\"\": \"\"\"\"0.19.0-beta.54\"\"\"\"/' package.json)",
|
|
208
208
|
"Bash(kill 853547)",
|
|
209
|
-
"Bash(sed -i 's/\"\"\"\"@absolutejs\\\\/absolute\"\"\"\": \"\"\"\"0.19.0-beta.54\"\"\"\"/\"\"\"\"@absolutejs\\\\/absolute\"\"\"\": \"\"\"\"0.19.0-beta.55\"\"\"\"/' package.json)"
|
|
209
|
+
"Bash(sed -i 's/\"\"\"\"@absolutejs\\\\/absolute\"\"\"\": \"\"\"\"0.19.0-beta.54\"\"\"\"/\"\"\"\"@absolutejs\\\\/absolute\"\"\"\": \"\"\"\"0.19.0-beta.55\"\"\"\"/' package.json)",
|
|
210
|
+
"Bash(kill 856233)",
|
|
211
|
+
"Bash(sed -i 's/\"\"\"\"@absolutejs\\\\/absolute\"\"\"\": \"\"\"\"0.19.0-beta.55\"\"\"\"/\"\"\"\"@absolutejs\\\\/absolute\"\"\"\": \"\"\"\"0.19.0-beta.56\"\"\"\"/' package.json)"
|
|
210
212
|
]
|
|
211
213
|
}
|
|
212
214
|
}
|
package/dist/build.js
CHANGED
|
@@ -202997,7 +202997,12 @@ var init_simpleHTMXHMR = () => {};
|
|
|
202997
202997
|
import { existsSync as existsSync14 } from "fs";
|
|
202998
202998
|
import { rm as rm8 } from "fs/promises";
|
|
202999
202999
|
import { basename as basename8, relative as relative8, resolve as resolve20 } from "path";
|
|
203000
|
-
var
|
|
203000
|
+
var moduleServerPromise = null, getModuleServer = () => {
|
|
203001
|
+
if (!moduleServerPromise) {
|
|
203002
|
+
moduleServerPromise = Promise.resolve().then(() => (init_moduleServer(), exports_moduleServer));
|
|
203003
|
+
}
|
|
203004
|
+
return moduleServerPromise;
|
|
203005
|
+
}, parseErrorLocationFromMessage = (msg) => {
|
|
203001
203006
|
const pathLineCol = msg.match(/^([^\s:]+):(\d+)(?::(\d+))?/);
|
|
203002
203007
|
if (pathLineCol) {
|
|
203003
203008
|
const [, file3, lineStr, colStr] = pathLineCol;
|
|
@@ -203452,8 +203457,8 @@ var parseErrorLocationFromMessage = (msg) => {
|
|
|
203452
203457
|
});
|
|
203453
203458
|
return state.manifest;
|
|
203454
203459
|
}
|
|
203460
|
+
const { invalidateModule: invalidateModule2 } = await getModuleServer();
|
|
203455
203461
|
for (const file3 of reactFiles) {
|
|
203456
|
-
const { invalidateModule: invalidateModule2 } = await Promise.resolve().then(() => (init_moduleServer(), exports_moduleServer));
|
|
203457
203462
|
invalidateModule2(file3);
|
|
203458
203463
|
}
|
|
203459
203464
|
const pageModuleUrl = await getReactModuleUrl(primaryFile);
|
|
@@ -204837,5 +204842,5 @@ export {
|
|
|
204837
204842
|
build
|
|
204838
204843
|
};
|
|
204839
204844
|
|
|
204840
|
-
//# debugId=
|
|
204845
|
+
//# debugId=5243DDD0A21F121D64756E2164756E21
|
|
204841
204846
|
//# sourceMappingURL=build.js.map
|