From 14d2b47e63e61abb6cf74469cc8a041ac496cc4a Mon Sep 17 00:00:00 2001 From: Rishabh Chawla Date: Mon, 16 Jul 2018 12:39:15 +0530 Subject: [PATCH] docs: init documentaion Add setup walk through and add usage description --- INIT.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/INIT.md b/INIT.md index c4536c55f3d..82ebf110a3d 100644 --- a/INIT.md +++ b/INIT.md @@ -6,13 +6,13 @@ A. **Local setup** Follow given steps to locally setup `webpack-cli init` by installing dependencies: -1. Create `package.json` through npm +1. Create `package.json` through npm. ```shell $ npm init ``` -2. Install `webpack` and `webpack-cli` as devDependencies +2. Install `webpack` and `webpack-cli` as devDependencies. ```shell $ npm install --save-dev webpack webpack-cli @@ -27,7 +27,7 @@ Follow given steps to locally setup `webpack-cli init` by installing dependencie B. **Global Setup** Follow following steps to setup `webpack-cli init` globally: -1. Install `webpack` and `webpack-cli` globally +1. Install `webpack` and `webpack-cli` globally. ```shell $ npm install -g webpack webpack-cli ```