From 66e371acadb75b532d118864224ed7d041c3dfcc 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 | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/sources/commands/Use.ts b/sources/commands/Use.ts index aa75db9ae..e0d7df7ee 100644 --- a/sources/commands/Use.ts +++ b/sources/commands/Use.ts @@ -15,8 +15,14 @@ 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'`, ]], });