kasy-cli 1.4.0 → 1.4.1
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/lib/commands/update.js +2 -1
- package/package.json +1 -1
package/lib/commands/update.js
CHANGED
|
@@ -335,7 +335,8 @@ async function runUpdate(module, options = {}) {
|
|
|
335
335
|
|
|
336
336
|
// ── Mode B: show status ──────────────────────────────────────────────────────
|
|
337
337
|
const alreadyUpToDate = projectVersion && !isNewer(currentVersion, projectVersion);
|
|
338
|
-
const
|
|
338
|
+
const modulesForChangelog = [...new Set([...activeModules, COMPONENTS_UPDATE_TARGET])];
|
|
339
|
+
const changes = getChangesSince(changelog, projectVersion, modulesForChangelog, options.language);
|
|
339
340
|
|
|
340
341
|
// Modules in this project that have patch dirs (can be re-applied)
|
|
341
342
|
const patchableModules = [];
|