We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4edc5e0 commit 66e371aCopy full SHA for 66e371a
sources/commands/Use.ts
@@ -15,8 +15,14 @@ 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@*'`,
+ `Configure the project to use the latest pnpm release`,
+ `corepack use pnpm`,
20
+ ], [
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
0 commit comments