@stacksjs/buddy 0.58.70 → 0.58.72
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/{chunk-89229d657386eb70.js → chunk-94f0ae38d2d27d78.js} +1 -1
- package/dist/cli.js +18 -3309
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/src/cli.ts +16 -68
- package/src/commands/setup.ts +1 -0
|
@@ -1594,7 +1594,7 @@ function setup(buddy) {
|
|
|
1594
1594
|
await optimizePkgxDeps();
|
|
1595
1595
|
await initializeProject(options);
|
|
1596
1596
|
});
|
|
1597
|
-
buddy.command("setup:oh-my-zsh", descriptions2.ohMyZsh).option("--verbose", descriptions2.verbose, { default: false }).action(async (_options) => {
|
|
1597
|
+
buddy.command("setup:oh-my-zsh", descriptions2.ohMyZsh).alias("upgrade:oh-my-zsh").option("--verbose", descriptions2.verbose, { default: false }).action(async (_options) => {
|
|
1598
1598
|
log22.debug("Running `buddy setup:oh-my-zsh` ...", _options);
|
|
1599
1599
|
const homePath = (await $2`echo $HOME`.text()).trim();
|
|
1600
1600
|
const zshrcPath = p4.join(homePath, ".zshrc");
|