Update nvm instructions in README.md (#51240)
* Update nvm instructions in README.md * Update getting started instructions for nvm install * Update docs manifest
This commit is contained in:
parent
9b41815229
commit
0eb4383918
|
@ -20,8 +20,8 @@ To get up and running within the WooCommerce Monorepo, you will need to make sur
|
||||||
Once you've installed all of the prerequisites, you can run the following commands to get everything working.
|
Once you've installed all of the prerequisites, you can run the following commands to get everything working.
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
# Ensure that you're using the correct version of Node
|
# Ensure that correct version of Node is installed and being used
|
||||||
nvm use
|
nvm install
|
||||||
# Install the PHP and Composer dependencies for all of the plugins, packages, and tools
|
# Install the PHP and Composer dependencies for all of the plugins, packages, and tools
|
||||||
pnpm install
|
pnpm install
|
||||||
# Build all of the plugins, packages, and tools in the monorepo
|
# Build all of the plugins, packages, and tools in the monorepo
|
||||||
|
|
|
@ -874,7 +874,7 @@
|
||||||
"menu_title": "Development environment setup",
|
"menu_title": "Development environment setup",
|
||||||
"tags": "tutorial, setup",
|
"tags": "tutorial, setup",
|
||||||
"edit_url": "https://github.com/woocommerce/woocommerce/edit/trunk/docs/getting-started/development-environment.md",
|
"edit_url": "https://github.com/woocommerce/woocommerce/edit/trunk/docs/getting-started/development-environment.md",
|
||||||
"hash": "9e471d3f44a882fe61dcad9e5207d51b280a7220aae1bf6e4ae1fbdd68b7e3d4",
|
"hash": "bf5d77349ea64d1b8e19fe6b7472be35ed92406c5aafe677ce92363fb13f94d4",
|
||||||
"url": "https://raw.githubusercontent.com/woocommerce/woocommerce/trunk/docs/getting-started/development-environment.md",
|
"url": "https://raw.githubusercontent.com/woocommerce/woocommerce/trunk/docs/getting-started/development-environment.md",
|
||||||
"id": "9080572a3904349c44c565ca7e1bef1212c58757"
|
"id": "9080572a3904349c44c565ca7e1bef1212c58757"
|
||||||
},
|
},
|
||||||
|
@ -1804,5 +1804,5 @@
|
||||||
"categories": []
|
"categories": []
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"hash": "77c102c35a45b0681e7b70def9d639d764e4e5068121c2ef4dd23477c0f8784c"
|
"hash": "dfe48a2a48d383c1f4e5b5bb4258d369dd4e80ac8582462b16bbfedd879cb0bf"
|
||||||
}
|
}
|
|
@ -80,22 +80,16 @@ git clone https://github.com/woocommerce/woocommerce.git
|
||||||
cd woocommerce
|
cd woocommerce
|
||||||
```
|
```
|
||||||
|
|
||||||
### Activate the required Node version
|
### Install and Activate the required Node version
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
nvm use
|
nvm install
|
||||||
Found '/path/to/woocommerce/.nvmrc' with version <v12>
|
Found '/path/to/woocommerce/.nvmrc' with version <v20>
|
||||||
Now using node v12.21.0 (npm v6.14.11)
|
v20.17.0 is already installed.
|
||||||
|
Now using node v20.17.0 (npm v10.8.2)
|
||||||
```
|
```
|
||||||
|
|
||||||
Note: if you don't have the required version of Node installed, NVM will alert you so you can install it:
|
Note: if you don't have the required version of Node installed, NVM will install it.
|
||||||
|
|
||||||
```sh
|
|
||||||
Found '/path/to/woocommerce/.nvmrc' with version <v12>
|
|
||||||
N/A: version "v12 -> N/A" is not yet installed.
|
|
||||||
|
|
||||||
You need to run "nvm install v12" to install it before using it.
|
|
||||||
```
|
|
||||||
|
|
||||||
### Install dependencies
|
### Install dependencies
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue