From 1c7d4e3fc343a20fff9f98f794047aec789120bc Mon Sep 17 00:00:00 2001 From: Yoshiya Hinosawa Date: Sun, 16 Sep 2018 17:46:41 +0900 Subject: [PATCH] chore: change npm start (#2480) --- README.md | 2 +- package.json | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index bc762d0..fdfb762 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ Additional samples can be found in this repository: You can run these samples as: ``` -$ npm start +$ npm run serve-static ``` ## Google Group diff --git a/package.json b/package.json index f277f38..b42b507 100644 --- a/package.json +++ b/package.json @@ -10,7 +10,8 @@ "c3.min.css" ], "scripts": { - "start": "static -p 8080 htdocs/", + "start": "run-p serve-static watch", + "serve-static": "static -p 8080 htdocs/", "lint": "jshint --reporter=node_modules/jshint-stylish src/ spec/", "docs": "bundle exec middleman", "build": "run-s build:js build:css",