From 91df4845589faca67469702cfb87939368e41e38 Mon Sep 17 00:00:00 2001 From: Greg Venech Date: Tue, 13 Jun 2017 17:46:38 -0400 Subject: [PATCH 1/2] fix(guides): update the `get-started` redirect Resolves #1287 --- antwar.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/antwar.config.js b/antwar.config.js index 7e4ca6f3785c..b0ccf3d5f7d5 100644 --- a/antwar.config.js +++ b/antwar.config.js @@ -41,7 +41,7 @@ module.exports = { 'get-started': { redirects: { - '': '/guides/get-started', + '': '/guides/getting-started', 'install-webpack': '/guides/installation', 'why-webpack': '/guides/why-webpack', } From 273766392f2278ed1d7e2673e7503845659399c5 Mon Sep 17 00:00:00 2001 From: Greg Venech Date: Tue, 13 Jun 2017 17:47:06 -0400 Subject: [PATCH 2/2] fix(guides): add missing link in installation --- content/guides/installation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/guides/installation.md b/content/guides/installation.md index 1a8856348d40..fac77b8867a9 100644 --- a/content/guides/installation.md +++ b/content/guides/installation.md @@ -28,7 +28,7 @@ npm install --save-dev webpack npm install --save-dev webpack@ ``` -Installing locally is what we recommend for most projects. This makes it easier to upgrade projects individually when breaking changes are introduced. Typically webpack is run via one or more [NPM scripts]() which will look for a webpack installation in your local `node_modules` directory: +Installing locally is what we recommend for most projects. This makes it easier to upgrade projects individually when breaking changes are introduced. Typically webpack is run via one or more [npm scripts](https://docs.npmjs.com/misc/scripts) which will look for a webpack installation in your local `node_modules` directory: ```json "scripts": {