From 0298aba86fc3aacde95beba3692cd59fb211f7f4 Mon Sep 17 00:00:00 2001 From: kg86 Date: Sat, 24 Sep 2016 15:16:17 +0900 Subject: [PATCH 1/3] fix typos --- docs/build.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/build.md b/docs/build.md index 8537c2d6..e04de03e 100644 --- a/docs/build.md +++ b/docs/build.md @@ -19,7 +19,7 @@ Then, we have to run the app. ``` npm run hot ``` -> Actually the app can be start with `npm start@. However, the app will use the compiled script. +> Actually the app can be start with `npm start`. However, the app will use the compiled script. By this, webpack will watch the code changes and apply it automatically. From 70db2f78da2498b9458cbb6048863d2070760183 Mon Sep 17 00:00:00 2001 From: kg86 Date: Sat, 24 Sep 2016 15:17:38 +0900 Subject: [PATCH 2/3] add $ at the heading of each command --- docs/build.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/build.md b/docs/build.md index e04de03e..60e3308e 100644 --- a/docs/build.md +++ b/docs/build.md @@ -6,7 +6,7 @@ We use Webpack HMR to develop Boostnote. You can use this command to use our configuration ``` -npm run webpack +$ npm run webpack ``` After a few seconds, you will see this message. @@ -17,7 +17,7 @@ webpack: bundle is now VALID. Then, we have to run the app. ``` -npm run hot +$ npm run hot ``` > Actually the app can be start with `npm start`. However, the app will use the compiled script. From bd733312f4dfcfab3dd45ebc59d5a064dc8095a9 Mon Sep 17 00:00:00 2001 From: kg86 Date: Sat, 24 Sep 2016 15:23:43 +0900 Subject: [PATCH 3/3] add an instruction of npm install --- docs/build.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/docs/build.md b/docs/build.md index 60e3308e..5ed7c03f 100644 --- a/docs/build.md +++ b/docs/build.md @@ -3,7 +3,15 @@ ## Development We use Webpack HMR to develop Boostnote. -You can use this command to use our configuration +You can use following commands to use default configuration at the top of project directory. + +Install requirement packages. + +``` +$ npm install +``` + +Build codes. ``` $ npm run webpack