From ed908ce10fdaf9b5c364feeded2cf1e2c579607d Mon Sep 17 00:00:00 2001 From: Henry Tsai Date: Wed, 10 Jun 2020 10:00:43 -0700 Subject: [PATCH] Minor fixes to CLI installation and documentation. --- cli.md | 5 +++-- package.json | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/cli.md b/cli.md index 8afb98c3..443eb36c 100644 --- a/cli.md +++ b/cli.md @@ -4,8 +4,9 @@ ### Installation 1. Clone the ION repository: `git checkout master` -2. Install the project globally: `git install -g` -3. Use one of the supported commands below (currently limited to Create). +1. Build ION: `npm run build` +1. Install ION globally: `npm install -g .` +1. Use one of the supported commands below (currently limited to Create). ### Commands diff --git a/package.json b/package.json index 78963662..86a1c908 100644 --- a/package.json +++ b/package.json @@ -35,7 +35,7 @@ "typescript": "3.4.3" }, "bin": { - "ion": "./bin/index.js" + "ion": "./dist/bin/index.js" }, "scripts": { "precommit": "npm run lint",