From be1fad6a1dbe8919af84af6a17c14f2ba0187ba0 Mon Sep 17 00:00:00 2001 From: Oh Martin Date: Sat, 24 Oct 2020 01:55:18 +0200 Subject: [PATCH] Update README.md --- README.md | 32 ++++++++++++++++++++------------ 1 file changed, 20 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 2313286..c745886 100644 --- a/README.md +++ b/README.md @@ -1,24 +1,32 @@ # getbible -## Project setup +# install dependencies ``` -yarn install +npm install ``` - -### Compiles and hot-reloads for development +# run electron server ``` -yarn serve +npm run electron:serve ``` - -### Compiles and minifies for production +# serve with hot reload at localhost:8080 ``` -yarn build +npm run dev ``` - -### Lints and fixes files +# build for production with minification ``` -yarn lint +npm run build +``` +# build for production and view the bundle analyzer report +``` +npm run build --report +``` +# run unit tests +``` +npm run unit +``` +# run all tests +``` +npm test ``` - ### Customize configuration See [Configuration Reference](https://cli.vuejs.org/config/).