fix: remove rarely used commands from generic help

This commit is contained in:
Zoltan Kochan
2020-05-24 12:42:07 +03:00
parent cc6cc3786e
commit e28b4e8777
2 changed files with 9 additions and 66 deletions

View File

@@ -0,0 +1,5 @@
---
"pnpm": minor
---
Add descriptions to the commands in the generic help. Remove some rarely use commands from generic help.

View File

@@ -74,6 +74,10 @@ function getHelpText () {
title: 'Review your dependencies',
list: [
{
description: 'Checks for known security issues with the installed packages',
name: 'audit',
},
{
description: 'Print all the versions of packages that are installed, as well as their dependencies, in a tree-structure',
name: 'list',
@@ -126,72 +130,6 @@ function getHelpText () {
{
name: 'root',
},
{
description: 'Checks for known security issues with the installed packages',
name: 'audit',
},
],
},
{
title: 'Manage your monorepo',
list: [
{
description: 'Runs a command in each package of the monorepo',
name: 'recursive exec',
},
{
description: 'Runs installation for every package in every subfolder',
name: 'recursive install',
},
{
name: 'recursive add',
},
{
name: 'recursive list',
},
{
name: 'recursive why',
},
{
name: 'recursive outdated',
},
{
name: 'recursive rebuild',
},
{
name: 'recursive run',
},
{
name: 'recursive test',
},
{
name: 'recursive remove',
},
{
name: 'recursive unlink',
},
{
name: 'recursive update',
},
],
},
{
title: 'Use a store server',
list: [
{
description: 'Starts a server that does all interactions with the store. Other commands will delegate any store-related tasks to this server',
name: 'server start',
},
{
description: 'Stops the store server',
name: 'server status',
},
{
description: 'Prints information about the running server',
name: 'server stop',
},
],
},
{