@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/index.js
CHANGED
|
@@ -171320,6 +171320,9 @@ var isDev, extractBuildError = (logs, pass, label, frameworkNames, isIncremental
|
|
|
171320
171320
|
const isIncremental = incrementalFiles && incrementalFiles.length > 0;
|
|
171321
171321
|
const normalizedIncrementalFiles = incrementalFiles?.map(normalizePath);
|
|
171322
171322
|
const freshReadPlugins = isIncremental ? [createFreshReadPlugin(incrementalFiles)] : [];
|
|
171323
|
+
if (isIncremental) {
|
|
171324
|
+
console.log(`[build] incremental with ${incrementalFiles.length} changed files, fresh-read plugin active`);
|
|
171325
|
+
}
|
|
171323
171326
|
const throwOnError = options?.throwOnError === true;
|
|
171324
171327
|
const hmr = options?.injectHMR === true;
|
|
171325
171328
|
const buildPath = validateSafePath(buildDirectory, projectRoot);
|
|
@@ -205304,5 +205307,5 @@ export {
|
|
|
205304
205307
|
ANGULAR_INIT_TIMEOUT_MS
|
|
205305
205308
|
};
|
|
205306
205309
|
|
|
205307
|
-
//# debugId=
|
|
205310
|
+
//# debugId=C6FCF8C73E66208364756E2164756E21
|
|
205308
205311
|
//# sourceMappingURL=index.js.map
|