This commit is contained in:
Alexandre Lara 2023-04-04 15:22:17 -03:00 committed by GitHub
parent 031c28a7df
commit d27d4d3a2e
1 changed files with 6 additions and 6 deletions

View File

@ -10,9 +10,9 @@
- [Linting](#linting) - [Linting](#linting)
- [Running the Blocks plugin](#running-the-blocks-plugin) - [Running the Blocks plugin](#running-the-blocks-plugin)
- [Developer Tools (Visual Studio Code)](#developer-tools-visual-studio-code) - [Developer Tools (Visual Studio Code)](#developer-tools-visual-studio-code)
- [EditorConfig](#editorconfig) - [EditorConfig](#editorconfig)
- [ESLint](#eslint) - [ESLint](#eslint)
- [Prettier](#prettier) - [Prettier](#prettier)
- [Testing](#testing) - [Testing](#testing)
Before you can begin contributing to the Blocks plugin there are several steps and tools required to setup your local development environment. Before you can begin contributing to the Blocks plugin there are several steps and tools required to setup your local development environment.
@ -48,9 +48,9 @@ define( 'SCRIPT_DEBUG', true );
To install dependencies, you will need the following tools installed on your machine: To install dependencies, you will need the following tools installed on your machine:
* `node` and `npm` via [NVM](https://github.com/nvm-sh/nvm#installing-and-updating): While you can always install Node or NPM through other means, we recommend using NVM to ensure you're aligned with the version used by our development teams. Our repository contains [an `.nvmrc` file](../../../.nvmrc) which helps ensure you are using the correct version of Node. - `node` and `npm` via [NVM](https://github.com/nvm-sh/nvm#installing-and-updating): While you can always install Node or NPM through other means, we recommend using NVM to ensure you're aligned with the version used by our development teams. Our repository contains [an `.nvmrc` file](../../../.nvmrc) which helps ensure you are using the correct version of Node.
* [PHP](https://www.php.net/manual/en/install.php): WooCommerce Blocks requires PHP. It is also needed to run Composer and various project build scripts. - [PHP](https://www.php.net/manual/en/install.php): WooCommerce Blocks requires PHP. It is also needed to run Composer and various project build scripts.
* [Composer](https://getcomposer.org/doc/00-intro.md): We use Composer to manage all of the dependencies for PHP packages and plugins. - [Composer](https://getcomposer.org/doc/00-intro.md): We use Composer to manage all of the dependencies for PHP packages and plugins.
See [`package.json` `engines`](../../../package.json) and [`readme.txt`](../../../readme.txt#L6) for details on required versions. See [`package.json` `engines`](../../../package.json) and [`readme.txt`](../../../readme.txt#L6) for details on required versions.
<!-- --> <!-- -->