@absolutejs/absolute 0.19.0-beta.76 → 0.19.0-beta.77
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/dist/build.js +4 -1
- package/dist/build.js.map +3 -3
- package/dist/index.js +4 -1
- package/dist/index.js.map +3 -3
- package/package.json +1 -1
package/dist/build.js
CHANGED
|
@@ -171241,6 +171241,9 @@ var isDev, extractBuildError = (logs, pass, label, frameworkNames, isIncremental
|
|
|
171241
171241
|
const isIncremental = incrementalFiles && incrementalFiles.length > 0;
|
|
171242
171242
|
const normalizedIncrementalFiles = incrementalFiles?.map(normalizePath);
|
|
171243
171243
|
const freshReadPlugins = isIncremental ? [createFreshReadPlugin(incrementalFiles)] : [];
|
|
171244
|
+
if (isIncremental) {
|
|
171245
|
+
console.log(`[build] incremental with ${incrementalFiles.length} changed files, fresh-read plugin active`);
|
|
171246
|
+
}
|
|
171244
171247
|
const throwOnError = options?.throwOnError === true;
|
|
171245
171248
|
const hmr = options?.injectHMR === true;
|
|
171246
171249
|
const buildPath = validateSafePath(buildDirectory, projectRoot);
|
|
@@ -204899,5 +204902,5 @@ export {
|
|
|
204899
204902
|
build
|
|
204900
204903
|
};
|
|
204901
204904
|
|
|
204902
|
-
//# debugId=
|
|
204905
|
+
//# debugId=E8E82C0333FF86BF64756E2164756E21
|
|
204903
204906
|
//# sourceMappingURL=build.js.map
|