diff --git a/src/content/guides/getting-started.md b/src/content/guides/getting-started.md index 0164095ed46a..d3f518db2d2d 100644 --- a/src/content/guides/getting-started.md +++ b/src/content/guides/getting-started.md @@ -25,9 +25,9 @@ contributors: - anshumanv --- -webpack is used to compile JavaScript modules. Once [installed](/guides/installation), you can interface with webpack either from its [CLI](/api/cli) or [API](/api/node). If you're still new to webpack, please read through the [core concepts](/concepts) and [this comparison](/comparison) to learn why you might use it over the other tools that are out in the community. +webpack is used to compile JavaScript modules. Once [installed](/guides/installation), you can interact with webpack either from its [CLI](/api/cli) or [API](/api/node). If you're still new to webpack, please read through the [core concepts](/concepts) and [this comparison](/comparison) to learn why you might use it over the other tools that are out in the community. -W> Since webpack v5.0.0-beta.1 the minimum Node.js version to run webpack is 10.13.0 (LTS) +W> The minimum Node.js version to run webpack 5 is 10.13.0 (LTS) ## Basic Setup @@ -40,7 +40,13 @@ npm init -y npm install webpack webpack-cli --save-dev ``` -T> Throughout the Guides we will use `diff` blocks to show you what changes we're making to directories, files, and code. +Throughout the Guides we will use __`diff`__ blocks to show you what changes we're making to directories, files, and code. For instance: + +```diff ++ this is a new line you shall copy into your code +- and this is a line to be removed from your code + and this is a line not to touch. +``` Now we'll create the following directory structure, files and their contents: @@ -72,12 +78,12 @@ document.body.appendChild(component()); __index.html__ ``` html - +
- +