@absolutejs/absolute 0.19.0-beta.143 → 0.19.0-beta.144
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 +6 -1
- package/dist/build.js.map +3 -3
- package/dist/index.js +6 -1
- package/dist/index.js.map +3 -3
- package/package.json +1 -1
package/dist/build.js
CHANGED
|
@@ -203867,6 +203867,11 @@ var moduleServerPromise, getModuleServer = () => moduleServerPromise, parseError
|
|
|
203867
203867
|
const nonVueFiles = filesToRebuild.filter((file3) => !file3.endsWith(".vue") && detectFramework(file3, state.resolvedPaths) === "vue");
|
|
203868
203868
|
for (const tsFile of nonVueFiles) {
|
|
203869
203869
|
const affected = getAffectedFiles(state.dependencyGraph, tsFile);
|
|
203870
|
+
if (affected.length > 0) {
|
|
203871
|
+
logWarn(`Vue composable change: ${basename8(tsFile)} affects ${affected.length} files: ${affected.map((f) => basename8(f)).join(", ")}`);
|
|
203872
|
+
} else {
|
|
203873
|
+
logWarn(`Vue composable change: ${basename8(tsFile)} has no dependents in graph`);
|
|
203874
|
+
}
|
|
203870
203875
|
for (const dep of affected) {
|
|
203871
203876
|
if (dep.endsWith(".vue") && !vueFiles.includes(dep)) {
|
|
203872
203877
|
vueFiles.push(dep);
|
|
@@ -205090,5 +205095,5 @@ export {
|
|
|
205090
205095
|
build
|
|
205091
205096
|
};
|
|
205092
205097
|
|
|
205093
|
-
//# debugId=
|
|
205098
|
+
//# debugId=A8C9971D879640ED64756E2164756E21
|
|
205094
205099
|
//# sourceMappingURL=build.js.map
|