@absolutejs/absolute 0.19.0-beta.77 → 0.19.0-beta.79
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/dist/build.js +3 -3
- package/dist/build.js.map +4 -4
- package/dist/index.js +3 -3
- package/dist/index.js.map +4 -4
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -171321,7 +171321,7 @@ var isDev, extractBuildError = (logs, pass, label, frameworkNames, isIncremental
|
|
|
171321
171321
|
const normalizedIncrementalFiles = incrementalFiles?.map(normalizePath);
|
|
171322
171322
|
const freshReadPlugins = isIncremental ? [createFreshReadPlugin(incrementalFiles)] : [];
|
|
171323
171323
|
if (isIncremental) {
|
|
171324
|
-
console.log(`[build] incremental with ${incrementalFiles.length} changed files
|
|
171324
|
+
console.log(`[build] incremental with ${incrementalFiles.length} changed files:`, incrementalFiles.map((f) => f.split("/").slice(-2).join("/")));
|
|
171325
171325
|
}
|
|
171326
171326
|
const throwOnError = options?.throwOnError === true;
|
|
171327
171327
|
const hmr = options?.injectHMR === true;
|
|
@@ -204250,7 +204250,7 @@ var moduleServerPromise, getModuleServer = () => moduleServerPromise, parseError
|
|
|
204250
204250
|
}
|
|
204251
204251
|
if (config.reactDirectory && affectedFrameworks.includes("react")) {
|
|
204252
204252
|
await handleReactFastPath(state, config, files, startTime, onRebuildComplete);
|
|
204253
|
-
files.filter((f) => detectFramework(f, state.resolvedPaths) === "react").forEach((f) => handled.add(f));
|
|
204253
|
+
files.filter((f) => detectFramework(f, state.resolvedPaths) === "react" && (f.endsWith(".tsx") || f.endsWith(".jsx"))).forEach((f) => handled.add(f));
|
|
204254
204254
|
}
|
|
204255
204255
|
if (config.svelteDirectory && affectedFrameworks.includes("svelte")) {
|
|
204256
204256
|
await handleSvelteFastPath(state, config, files, startTime, onRebuildComplete);
|
|
@@ -205307,5 +205307,5 @@ export {
|
|
|
205307
205307
|
ANGULAR_INIT_TIMEOUT_MS
|
|
205308
205308
|
};
|
|
205309
205309
|
|
|
205310
|
-
//# debugId=
|
|
205310
|
+
//# debugId=CAB4085F79D5FEFB64756E2164756E21
|
|
205311
205311
|
//# sourceMappingURL=index.js.map
|