From 9126bf55b4b4990b623adc1661c03b56048f35bc Mon Sep 17 00:00:00 2001 From: Damon Cook Date: Fri, 15 Oct 2021 11:46:20 -0400 Subject: [PATCH] update build command (#35681) --- .../contributors/code/getting-started-with-code-contribution.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/contributors/code/getting-started-with-code-contribution.md b/docs/contributors/code/getting-started-with-code-contribution.md index 79dad4c1dd2e1e..0b18103b4e8677 100644 --- a/docs/contributors/code/getting-started-with-code-contribution.md +++ b/docs/contributors/code/getting-started-with-code-contribution.md @@ -39,7 +39,7 @@ npm run dev > Note: The install scripts require [Python](https://www.python.org/) to be installed and in the path of the local system. This might be installed by default for your operating system, or require downloading and installing. -There are two ways to build your code. While developing, you probably will want to use `npm run dev` to run continuous builds automatically as source files change. The dev build also includes additional warnings and errors to help troubleshoot while developing. Once you are happy with your changes, you can run `npm build` to create optimized production build. +There are two ways to build your code. While developing, you probably will want to use `npm run dev` to run continuous builds automatically as source files change. The dev build also includes additional warnings and errors to help troubleshoot while developing. Once you are happy with your changes, you can run `npm run build` to create optimized production build. Once built, Gutenberg is ready to be used as a WordPress plugin!