Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/glossary.md
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ Corepack
In practical terms, Corepack lets you use {term}`Yarn`, {term}`npm`, and {term}`pnpm` without having to install them.

Corepack is distributed by default with all recent Node.js versions.
Run `corepack enable` to install the required Yarn and pnpm binaries on your path.
Run `npm i -g corepack@latest && corepack enable` to install the required Yarn and pnpm binaries on your path.

Git
[Git](https://git-scm.com/) is a free and open source distributed version control system.
Expand Down
2 changes: 1 addition & 1 deletion docs/install/create-project-cookieplone.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ Do not create a new Plone project with Python 3.9.
3. Enable {term}`corepack` so that Node.js will install {term}`pnpm` as a package manager.

```shell
corepack enable
npm i -g corepack@latest && corepack enable
```


Expand Down
2 changes: 1 addition & 1 deletion docs/install/create-project.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ Use {term}`Corepack` to enable Yarn, which was already installed with the {ref}`
1. Open a terminal and type:

```shell
corepack enable
npm i -g corepack@latest && corepack enable
```

````{important}
Expand Down