Browse Source

chore: change npm start (#2480)

pull/1812/merge
Yoshiya Hinosawa 6 years ago committed by GitHub
parent
commit
1c7d4e3fc3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      README.md
  2. 3
      package.json

2
README.md

@ -20,7 +20,7 @@ Additional samples can be found in this repository:
You can run these samples as: You can run these samples as:
``` ```
$ npm start $ npm run serve-static
``` ```
## Google Group ## Google Group

3
package.json

@ -10,7 +10,8 @@
"c3.min.css" "c3.min.css"
], ],
"scripts": { "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/", "lint": "jshint --reporter=node_modules/jshint-stylish src/ spec/",
"docs": "bundle exec middleman", "docs": "bundle exec middleman",
"build": "run-s build:js build:css", "build": "run-s build:js build:css",

Loading…
Cancel
Save