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.
@@ -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 changes = getChangesSince(changelog, projectVersion, activeModules, options.language);
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 = [];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kasy-cli",
3
- "version": "1.4.0",
3
+ "version": "1.4.1",
4
4
  "description": "CLI for scaffolding production-ready Flutter SaaS apps with Firebase, Supabase, or API REST backends.",
5
5
  "bin": {
6
6
  "kasy": "./bin/kasy.js"