From 66b5224010968dd5d31903ef3bbecf4cd41346fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Walker=20Gusm=C3=A3o?= Date: Sun, 22 Oct 2017 20:23:25 -0200 Subject: [PATCH] doc(readme): add more information and links --- README.md | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 2778cd1..6826ae3 100644 --- a/README.md +++ b/README.md @@ -19,8 +19,6 @@ $ vue init InCuca/vue-standalone-component my-component $ cd my-component $ npm install $ npm run serve -$ npm run build -$ npm run build:doc ``` The generated output in ./dist can be used with node and the browser. @@ -30,7 +28,7 @@ PS: to build to UMD run `npm run build:umd` ### What's Included - Karma for testing -- Demo and documentation page from vue-styleguidist +- Demo and documentation page from [vue-styleguidist](https://github.com/vue-styleguidist/vue-styleguidist/) ### Linting @@ -38,8 +36,17 @@ PS: to build to UMD run `npm run build:umd` $ npm run lint ``` +### Testing & Test Coverage + +``` bash +$ npm run test +$ npm run test:watch +$ npm run test:cov +``` + ### Building to ./dist ``` bash $ npm run build +$ npm run build:doc ```