mustflow 2.11.0 → 2.17.0

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.
@@ -25,7 +25,7 @@ function renderVersionCheck(check, lang) {
25
25
  : t(lang, 'version.check.upToDate', { version: check.latestVersion }),
26
26
  ];
27
27
  if (check.updateAvailable) {
28
- lines.push('', t(lang, 'version.check.updateCommand'), check.updateCommand);
28
+ lines.push('', t(lang, 'version.check.updateCommand'), ...check.updateCommands.map((entry) => `${entry.manager}: ${entry.command}`));
29
29
  }
30
30
  return lines.join('\n');
31
31
  }
@@ -697,7 +697,7 @@ Read these files before working:
697
697
  "version.help.exit.ok": "Version information was printed",
698
698
  "version.check.latestAvailable": "latest {version} available",
699
699
  "version.check.upToDate": "latest {version}; already up to date",
700
- "version.check.updateCommand": "Update command:",
700
+ "version.check.updateCommand": "Update commands:",
701
701
  "version.error.checkFailed": "Could not check npm for a newer version: {message}",
702
702
  "upgrade.help.summary": "Check whether the installed mustflow package is current, then safely apply bundled workflow template updates when possible.",
703
703
  "upgrade.help.option.dryRun": "Check package status and print the project update plan without writing files",
@@ -697,7 +697,7 @@ Lee estos archivos antes de trabajar:
697
697
  "version.help.exit.ok": "Se imprimió la información de versión",
698
698
  "version.check.latestAvailable": "última versión {version} disponible",
699
699
  "version.check.upToDate": "última versión {version}; ya está actualizado",
700
- "version.check.updateCommand": "Comando de actualización:",
700
+ "version.check.updateCommand": "Comandos de actualización:",
701
701
  "version.error.checkFailed": "No se pudo consultar npm para una versión nueva: {message}",
702
702
  "upgrade.help.summary": "Comprueba si el paquete mustflow instalado está actualizado y luego aplica de forma segura las actualizaciones de la plantilla incluida cuando sea posible.",
703
703
  "upgrade.help.option.dryRun": "Comprueba el estado del paquete e imprime el plan de actualización del proyecto sin escribir archivos",
@@ -697,7 +697,7 @@ Lisez ces fichiers avant de travailler :
697
697
  "version.help.exit.ok": "Les informations de version ont été affichées",
698
698
  "version.check.latestAvailable": "dernière version {version} disponible",
699
699
  "version.check.upToDate": "dernière version {version}; déjà à jour",
700
- "version.check.updateCommand": "Commande de mise à jour :",
700
+ "version.check.updateCommand": "Commandes de mise à jour :",
701
701
  "version.error.checkFailed": "Impossible de vérifier une nouvelle version sur npm : {message}",
702
702
  "upgrade.help.summary": "Vérifie si le paquet mustflow installé est à jour, puis applique en sécurité les mises à jour du modèle inclus quand c'est possible.",
703
703
  "upgrade.help.option.dryRun": "Vérifie l'état du paquet et affiche le plan de mise à jour du projet sans écrire de fichiers",
@@ -697,7 +697,7 @@ export const hiMessages = {
697
697
  "version.help.exit.ok": "Version जानकारी प्रिंट की गई",
698
698
  "version.check.latestAvailable": "latest {version} उपलब्ध है",
699
699
  "version.check.upToDate": "latest {version}; पहले से up to date",
700
- "version.check.updateCommand": "Update command:",
700
+ "version.check.updateCommand": "Update commands:",
701
701
  "version.error.checkFailed": "npm पर नया version जाँचा नहीं जा सका: {message}",
702
702
  "upgrade.help.summary": "जाँचें कि installed mustflow package current है या नहीं, फिर संभव होने पर current CLI में bundled workflow template updates सुरक्षित रूप से लागू करें.",
703
703
  "upgrade.help.option.dryRun": "Package status जाँचें और files लिखे बिना project update plan प्रिंट करें",
@@ -1,4 +1,4 @@
1
- export const LOCAL_INDEX_SCHEMA_VERSION = '15';
1
+ export const LOCAL_INDEX_SCHEMA_VERSION = '19';
2
2
  export const LOCAL_INDEX_PARSER_VERSION = '1';
3
3
  export const DEFAULT_DATABASE_RELATIVE_PATH = '.mustflow/cache/mustflow.sqlite';
4
4
  export const LATEST_RUN_STATE_RELATIVE_PATH = '.mustflow/state/runs/latest.json';