From b057832d9e8a86ecf09ffca024c4737c524950e5 Mon Sep 17 00:00:00 2001 From: Dan Date: Mon, 4 Sep 2023 02:36:33 -0500 Subject: [PATCH] Add a few more examples --- sources/commands/Use.ts | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/sources/commands/Use.ts b/sources/commands/Use.ts index aa75db9ae..8d2d54f6a 100644 --- a/sources/commands/Use.ts +++ b/sources/commands/Use.ts @@ -15,9 +15,15 @@ export class UseCommand extends BaseCommand { automatically perform an install. `, examples: [[ - `Configure the project to use the latest Yarn release`, - `corepack use 'yarn@*'`, - ]], + `Configure the project to use the latest pnpm release`, + `corepack use pnpm` + ], [ + `Use a tagged version`, + `corepack use yarn@stable`, + ], [ + `Use a partial version number`, + `corepack use 'yarn@3'`, + ]], }); pattern = Option.String();