From 06a9b9f3eeed09dcf25029d748e46b7f92572edf Mon Sep 17 00:00:00 2001 From: Reinier Kaper Date: Thu, 29 Jun 2017 09:06:19 -0400 Subject: [PATCH 1/2] Updated getting-started.md Small changes to conclusion for better flow into next guide. --- content/guides/getting-started.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/content/guides/getting-started.md b/content/guides/getting-started.md index 764e5e88202a..4e891647c7a7 100644 --- a/content/guides/getting-started.md +++ b/content/guides/getting-started.md @@ -257,7 +257,8 @@ T> Custom parameters can be passed to webpack by adding two dashes between the ` ## Conclusion -Now that you have a basic build together, you should dig into the [basic concepts](/concepts) and [configuration](/configuration) to better understand webpack's design. The [API](/api) section digs into the various interfaces webpack offers. Or, if you'd prefer to learn by example, select the next guide from the list and continue building out this little demo we've been working on which should now look similar to this: +Now that you have a basic build together you should move on to the next guide [`Asset Management`](/guides/asset-management) to learn about how to manage assets like images and fonts with webpack. By now, your project should look like this: + __project__ @@ -274,3 +275,5 @@ webpack-demo ``` T> If you're using npm 5, you'll probably also see a `package-lock.json` file in your directory. + +If you want to learn more about webpack's design, you can check out the [basic concepts](/concepts) and [configuration](/configuration) pages. Furthermore, the [API](/api) section digs into the various interfaces webpack offers. From 0b521f617859a6ee3d50bb8dfbc97f11e303ea34 Mon Sep 17 00:00:00 2001 From: Reinier Kaper Date: Tue, 4 Jul 2017 08:54:04 -0400 Subject: [PATCH 2/2] fix: Textual changes to getting-started.md --- content/guides/getting-started.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/content/guides/getting-started.md b/content/guides/getting-started.md index 4e891647c7a7..c5c22d2188bc 100644 --- a/content/guides/getting-started.md +++ b/content/guides/getting-started.md @@ -257,8 +257,7 @@ T> Custom parameters can be passed to webpack by adding two dashes between the ` ## Conclusion -Now that you have a basic build together you should move on to the next guide [`Asset Management`](/guides/asset-management) to learn about how to manage assets like images and fonts with webpack. By now, your project should look like this: - +Now that you have a basic build together you should move on to the next guide [`Asset Management`](/guides/asset-management) to learn how to manage assets like images and fonts with webpack. At this point, your project should look like this: __project__