1 parent 31aa63a commit dcff792Copy full SHA for dcff792
2 files changed
README.markdown
@@ -13,15 +13,15 @@ JavaScript 初心者が JS の未来を見据えつつ、基礎をひととお
13
14
git clone https://github.com/mixi-inc/JavaScriptTraining.git
15
cd JavaScriptTraining
16
- npm install
+ npm run setup
17
18
19
2. webサーバーを立ち上げる
20
21
下のコマンドを端末で実行してください。なお、トレーニング中は
22
このコマンドを終了しないでください。
23
24
- $(npm bin)/gulp serve
+ npm run serve
25
26
27
3. トップページにアクセスする
package.json
@@ -4,7 +4,9 @@
4
"description": "Training course repository for JavaScript by mixi",
5
"main": "index.js",
6
"scripts": {
7
- "help": "$(npm bin)/gulp help"
+ "setup": "npm install; (cd public; bower install)",
8
+ "help": "$(npm bin)/gulp help",
9
+ "serve": "$(npm bin)/gulp serve"
10
},
11
"repository": {
12
"type": "git",
0 commit comments