We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4edc5e0 commit 164eff6Copy full SHA for 164eff6
sources/commands/Use.ts
@@ -15,9 +15,15 @@ export class UseCommand extends BaseCommand {
15
automatically perform an install.
16
`,
17
examples: [[
18
- `Configure the project to use the latest Yarn release`,
19
- `corepack use 'yarn@*'`,
20
- ]],
+ `Configure the project to use the latest pnpm release`,
+ `corepack use pnpm`
+ ], [
21
+ `Use a tagged version`,
22
+ `corepack use yarn@stable`,
23
24
+ `Use a partial version number`,
25
+ `corepack use 'yarn@3'`,
26
+ ]],
27
});
28
29
pattern = Option.String();
0 commit comments