pnpm-catalog-updates 1.1.4 → 1.1.5
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/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/cli/commandRegistrar.ts +3 -3
package/package.json
CHANGED
|
@@ -720,15 +720,15 @@ ${t('cli.help.tipLabel')} ${t('cli.help.tipContent', { locale: I18n.getLocale()
|
|
|
720
720
|
)
|
|
721
721
|
)
|
|
722
722
|
|
|
723
|
-
//
|
|
723
|
+
// Upgrade command (self-update)
|
|
724
724
|
program
|
|
725
|
-
.command('
|
|
725
|
+
.command('upgrade')
|
|
726
726
|
.description(t('cli.description.selfUpdate'))
|
|
727
727
|
.action(
|
|
728
728
|
createCommandAction(
|
|
729
729
|
serviceFactory,
|
|
730
730
|
{
|
|
731
|
-
name: '
|
|
731
|
+
name: 'upgrade',
|
|
732
732
|
needsServices: false,
|
|
733
733
|
},
|
|
734
734
|
async ({ globalOptions }) => {
|