@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
package/dist/cli/index.js
CHANGED
|
@@ -673,6 +673,8 @@ var dev = async (serverEntry, configPath2) => {
|
|
|
673
673
|
return;
|
|
674
674
|
if (!filename.endsWith(".ts") && !filename.endsWith(".tsx"))
|
|
675
675
|
return;
|
|
676
|
+
if (filename.includes(".tmp.") || filename.endsWith(".tmp"))
|
|
677
|
+
return;
|
|
676
678
|
if (restartTimeout)
|
|
677
679
|
clearTimeout(restartTimeout);
|
|
678
680
|
restartTimeout = setTimeout(() => {
|
package/dist/index.js
CHANGED
|
@@ -172295,7 +172295,7 @@ var safeRemoveFromGraph = (graph, fullPath) => {
|
|
|
172295
172295
|
operation: "add"
|
|
172296
172296
|
});
|
|
172297
172297
|
}
|
|
172298
|
-
}, 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) => {
|
|
172298
|
+
}, 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) => {
|
|
172299
172299
|
const watcher = watch(absolutePath, { recursive: true }, (event, filename) => {
|
|
172300
172300
|
if (!filename) {
|
|
172301
172301
|
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((file4) => detectFramework(file4, state.resolvedPaths) === "angular");
|
|
203321
|
+
for (const file4 of angularFiles) {
|
|
203322
|
+
state.fileHashes.set(resolve21(file4), computeFileHash(file4));
|
|
203323
|
+
}
|
|
203321
203324
|
const angularPagesPath = resolve21(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((file4) => detectFramework(file4, state.resolvedPaths) === "react");
|
|
203433
203436
|
if (reactFiles.length > 0) {
|
|
203437
|
+
for (const file4 of reactFiles) {
|
|
203438
|
+
state.fileHashes.set(resolve21(file4), computeFileHash(file4));
|
|
203439
|
+
}
|
|
203434
203440
|
const serverDuration = Date.now() - startTime;
|
|
203435
203441
|
for (const changedFile of reactFiles) {
|
|
203436
203442
|
const pageModuleUrl = await getReactModuleUrl(changedFile);
|
|
@@ -205202,5 +205208,5 @@ export {
|
|
|
205202
205208
|
ANGULAR_INIT_TIMEOUT_MS
|
|
205203
205209
|
};
|
|
205204
205210
|
|
|
205205
|
-
//# debugId=
|
|
205211
|
+
//# debugId=8DE734BC177EAFAE64756E2164756E21
|
|
205206
205212
|
//# sourceMappingURL=index.js.map
|