@absolutejs/absolute 0.19.0-beta.50 → 0.19.0-beta.52
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 +10 -8
- package/.absolutejs/tsconfig.tsbuildinfo +1 -1
- package/.claude/settings.local.json +2 -1
- package/dist/build.js +8 -2
- package/dist/build.js.map +4 -4
- package/dist/cli/index.js +2 -0
- package/dist/index.js +8 -2
- package/dist/index.js.map +4 -4
- 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 +20 -0
- 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 +20 -0
- package/native/publish.sh +1 -1
- package/package.json +7 -7
|
@@ -197,7 +197,8 @@
|
|
|
197
197
|
"Bash(PLAYWRIGHT_BROWSERS_PATH=/tmp/pw-browsers pnpm test runtime-runes -t hmr-preserve-state)",
|
|
198
198
|
"Bash(mkdir -p .changeset)",
|
|
199
199
|
"Bash(.changeset/hmr-preserve-state.md:*)",
|
|
200
|
-
"Bash(./scripts/use-patched-bun.sh bun:*)"
|
|
200
|
+
"Bash(./scripts/use-patched-bun.sh bun:*)",
|
|
201
|
+
"Bash(find native:*)"
|
|
201
202
|
]
|
|
202
203
|
}
|
|
203
204
|
}
|
package/dist/build.js
CHANGED
|
@@ -172216,7 +172216,7 @@ var safeRemoveFromGraph = (graph, fullPath) => {
|
|
|
172216
172216
|
operation: "add"
|
|
172217
172217
|
});
|
|
172218
172218
|
}
|
|
172219
|
-
}, shouldSkipFilename = (filename, isStylesDir) => !isStylesDir && (filename === "compiled" || filename === "build" || filename === "indexes" || filename === "server" || filename === "client" || filename.includes("/compiled") || filename.includes("/build") || filename.includes("/indexes") || filename.includes("/server") || filename.includes("/client")) || filename.endsWith("/"), setupWatcher = (absolutePath, isStylesDir, state, onFileChange) => {
|
|
172219
|
+
}, shouldSkipFilename = (filename, isStylesDir) => !isStylesDir && (filename === "compiled" || filename === "build" || filename === "indexes" || filename === "server" || filename === "client" || filename.includes("/compiled") || filename.includes("/build") || filename.includes("/indexes") || filename.includes("/server") || filename.includes("/client")) || filename.endsWith("/") || filename.includes(".tmp.") || filename.endsWith(".tmp") || filename.endsWith("~") || filename.startsWith(".#"), setupWatcher = (absolutePath, isStylesDir, state, onFileChange) => {
|
|
172220
172220
|
const watcher = watch(absolutePath, { recursive: true }, (event, filename) => {
|
|
172221
172221
|
if (!filename) {
|
|
172222
172222
|
return;
|
|
@@ -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
|