From bc018ef95da7270ce6f2d9d1da78ff745e5b1bae Mon Sep 17 00:00:00 2001 From: Nigel Yong <23243585+niyonx@users.noreply.github.com> Date: Fri, 25 Oct 2019 02:43:50 -0400 Subject: [PATCH 1/2] No need to install docsify-cli globally Remove global flag --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a6ea53d..4b476e6 100644 --- a/README.md +++ b/README.md @@ -15,9 +15,9 @@ $ npm run lint:fix This repository uses [Docsify](https://docsify.js.org) for generating documentation website on the fly. **Steps:** -1. Install `docsify-cli` globally. +1. Install `docsify-cli` ``` - npm i docsify-cli -g + npm i docsify-cli ``` 2. Then run the following command to serve the documentation. ``` From 9001c59422f61f0fff39d703c328073b6f9fd444 Mon Sep 17 00:00:00 2001 From: Nigel Yong <23243585+niyonx@users.noreply.github.com> Date: Fri, 25 Oct 2019 16:37:27 -0400 Subject: [PATCH 2/2] Updated Step 1 --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4b476e6..081769f 100644 --- a/README.md +++ b/README.md @@ -15,9 +15,9 @@ $ npm run lint:fix This repository uses [Docsify](https://docsify.js.org) for generating documentation website on the fly. **Steps:** -1. Install `docsify-cli` +1. Install dependencies ``` - npm i docsify-cli + npm install ``` 2. Then run the following command to serve the documentation. ```