pcu 1.1.6 → 1.1.7

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pcu",
3
- "version": "1.1.6",
3
+ "version": "1.1.7",
4
4
  "description": "CLI application for pnpm-catalog-updates",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -764,7 +764,7 @@ ${t('cli.help.tipLabel')} ${t('cli.help.tipContent', { locale: I18n.getLocale()
764
764
  cliOutput.print(chalk.gray(t('command.selfUpdate.restartHint')))
765
765
  } else {
766
766
  cliOutput.error(chalk.red(t('command.selfUpdate.failed')))
767
- cliOutput.print(chalk.gray('You can manually update with: npm install -g pcu@latest'))
767
+ cliOutput.print(chalk.gray(t('command.selfUpdate.manualHint')))
768
768
  exitProcess(1)
769
769
  }
770
770
  } catch (error) {
@@ -772,7 +772,7 @@ ${t('cli.help.tipLabel')} ${t('cli.help.tipContent', { locale: I18n.getLocale()
772
772
  if (globalOptions.verbose) {
773
773
  cliOutput.error(error)
774
774
  }
775
- cliOutput.print(chalk.gray('You can manually update with: npm install -g pcu@latest'))
775
+ cliOutput.print(chalk.gray(t('command.selfUpdate.manualHint')))
776
776
  exitProcess(1)
777
777
  }
778
778
  }