@absolutejs/absolute 0.19.0-beta.51 → 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 +8 -8
- package/.absolutejs/tsconfig.tsbuildinfo +1 -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
package/dist/index.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((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
|