From eb63b743b1c7a2a848807d52ff5d66c3a09ddbad Mon Sep 17 00:00:00 2001 From: TSUYUSATO Kitsune Date: Sat, 24 Sep 2016 12:07:53 +0900 Subject: [PATCH 1/4] use unpkg instead of npmcdn --- oh-my-cdn.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oh-my-cdn.json b/oh-my-cdn.json index 717263f7..347a5f53 100644 --- a/oh-my-cdn.json +++ b/oh-my-cdn.json @@ -4,6 +4,6 @@ "react": "https://cdnjs.cloudflare.com/ajax/libs/react/15.0.2/react.js", "react-dom": "https://cdnjs.cloudflare.com/ajax/libs/react/15.0.2/react-dom.js", "redux": "https://cdnjs.cloudflare.com/ajax/libs/redux/3.5.2/redux.js", - "react-redux": "https://npmcdn.com/react-redux@4.4.5/dist/react-redux.min.js" + "react-redux": "https://unpkg.com/react-redux@4.4.5/dist/react-redux.min.js" } } From 0298aba86fc3aacde95beba3692cd59fb211f7f4 Mon Sep 17 00:00:00 2001 From: kg86 Date: Sat, 24 Sep 2016 15:16:17 +0900 Subject: [PATCH 2/4] 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 3/4] 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 4/4] 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