From 35dae7b3fa89bcf508a6f0af5305922d19db9f85 Mon Sep 17 00:00:00 2001 From: Luiz Fernando Rodrigues Date: Thu, 12 Oct 2017 21:48:43 -0300 Subject: [PATCH 1/2] Improve tutorial step three --- content/tutorial/tutorial.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/tutorial/tutorial.md b/content/tutorial/tutorial.md index 416280fe18c..b56e58d604c 100644 --- a/content/tutorial/tutorial.md +++ b/content/tutorial/tutorial.md @@ -54,7 +54,7 @@ If you want to do it, here are the steps to follow: 1. Make sure you have a recent version of [Node.js](https://nodejs.org/en/) installed. 2. Follow the [installation instructions](/docs/installation.html#creating-a-new-application) to create a new project. -3. Delete all files in the `src/` folder of the new project. +3. Delete all files inside the `src/` folder of the new project (don't exclude the folder, just the files). 4. Add a file named `index.css` in the `src/` folder with [this CSS code](https://codepen.io/gaearon/pen/oWWQNa?editors=0100). 5. Add a file named `index.js` in the `src/` folder with [this JS code](https://codepen.io/gaearon/pen/oWWQNa?editors=0010). 6. Add these three lines to the top of `index.js` in the `src/` folder: From 471fec41a9ecbafc101ed958a9121066ed05a955 Mon Sep 17 00:00:00 2001 From: Luiz Fernando Rodrigues Date: Mon, 16 Oct 2017 07:48:38 -0200 Subject: [PATCH 2/2] Add rm command as a example --- content/tutorial/tutorial.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/tutorial/tutorial.md b/content/tutorial/tutorial.md index b56e58d604c..56c80bd74f0 100644 --- a/content/tutorial/tutorial.md +++ b/content/tutorial/tutorial.md @@ -54,7 +54,7 @@ If you want to do it, here are the steps to follow: 1. Make sure you have a recent version of [Node.js](https://nodejs.org/en/) installed. 2. Follow the [installation instructions](/docs/installation.html#creating-a-new-application) to create a new project. -3. Delete all files inside the `src/` folder of the new project (don't exclude the folder, just the files). +3. Delete all files inside the `src/` folder of the new project (don't delete the folder, just its contents (eg `rm -f src/*`)). 4. Add a file named `index.css` in the `src/` folder with [this CSS code](https://codepen.io/gaearon/pen/oWWQNa?editors=0100). 5. Add a file named `index.js` in the `src/` folder with [this JS code](https://codepen.io/gaearon/pen/oWWQNa?editors=0010). 6. Add these three lines to the top of `index.js` in the `src/` folder: