@absolutejs/absolute 0.19.0-beta.51 → 0.19.0-beta.53
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/prettier.cache.json +8 -8
- package/.absolutejs/tsconfig.tsbuildinfo +1 -1
- package/.claude/settings.local.json +3 -1
- package/dist/build.js +7 -1
- package/dist/build.js.map +3 -3
- package/dist/index.js +7 -1
- 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/native/packages/windows-arm64/fast_ops.dll +0 -0
- package/native/packages/windows-arm64/fast_ops.pdb +0 -0
- package/native/packages/windows-arm64/package.json +1 -1
- package/native/packages/windows-x64/fast_ops.dll +0 -0
- package/native/packages/windows-x64/fast_ops.pdb +0 -0
- package/native/packages/windows-x64/package.json +1 -1
- package/package.json +7 -7
|
@@ -198,7 +198,9 @@
|
|
|
198
198
|
"Bash(mkdir -p .changeset)",
|
|
199
199
|
"Bash(.changeset/hmr-preserve-state.md:*)",
|
|
200
200
|
"Bash(./scripts/use-patched-bun.sh bun:*)",
|
|
201
|
-
"Bash(find native:*)"
|
|
201
|
+
"Bash(find native:*)",
|
|
202
|
+
"Bash(PLAYWRIGHT_BROWSERS_PATH=/tmp/pw-browsers bun /tmp/docs-hmr-test.mjs 2>&1)",
|
|
203
|
+
"Bash(PLAYWRIGHT_BROWSERS_PATH=/tmp/pw-browsers bun /tmp/docs-hmr-test2.mjs 2>&1)"
|
|
202
204
|
]
|
|
203
205
|
}
|
|
204
206
|
}
|
package/dist/build.js
CHANGED
|
@@ -203318,6 +203318,9 @@ var parseErrorLocationFromMessage = (msg) => {
|
|
|
203318
203318
|
}, handleAngularFastPath = async (state, config, filesToRebuild, startTime, onRebuildComplete) => {
|
|
203319
203319
|
const angularDir = config.angularDirectory ?? "";
|
|
203320
203320
|
const angularFiles = filesToRebuild.filter((file3) => detectFramework(file3, state.resolvedPaths) === "angular");
|
|
203321
|
+
for (const file3 of angularFiles) {
|
|
203322
|
+
state.fileHashes.set(resolve20(file3), computeFileHash(file3));
|
|
203323
|
+
}
|
|
203321
203324
|
const angularPagesPath = resolve20(angularDir, "pages");
|
|
203322
203325
|
const pageEntries = resolveAngularPageEntries(state, angularFiles, angularPagesPath);
|
|
203323
203326
|
if (pageEntries.length > 0) {
|
|
@@ -203431,6 +203434,9 @@ var parseErrorLocationFromMessage = (msg) => {
|
|
|
203431
203434
|
const { buildDir } = state.resolvedPaths;
|
|
203432
203435
|
const reactFiles = filesToRebuild.filter((file3) => detectFramework(file3, state.resolvedPaths) === "react");
|
|
203433
203436
|
if (reactFiles.length > 0) {
|
|
203437
|
+
for (const file3 of reactFiles) {
|
|
203438
|
+
state.fileHashes.set(resolve20(file3), computeFileHash(file3));
|
|
203439
|
+
}
|
|
203434
203440
|
const serverDuration = Date.now() - startTime;
|
|
203435
203441
|
for (const changedFile of reactFiles) {
|
|
203436
203442
|
const pageModuleUrl = await getReactModuleUrl(changedFile);
|
|
@@ -204814,5 +204820,5 @@ export {
|
|
|
204814
204820
|
build
|
|
204815
204821
|
};
|
|
204816
204822
|
|
|
204817
|
-
//# debugId=
|
|
204823
|
+
//# debugId=2E953D5D3F1D08AA64756E2164756E21
|
|
204818
204824
|
//# sourceMappingURL=build.js.map
|