diff --git a/docs/getting-started.md b/docs/getting-started.md index 203ec74..173ca9c 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -5,9 +5,9 @@ Firstly, lets get acquainted with SMK and the SMK-CLI. Some useful links for various components of the SMK Project - [SMK repo](https://github.com/bcgov/smk) -- [SMK NPM repo](https://www.npmjs.com/package/smk) +- [SMK NPM repo](https://www.npmjs.com/package/@bcgov/smk) - [SMK-CLI repo](https://github.com/bcgov/smk-cli) -- [SMK-CLI NPM repo](https://www.npmjs.com/package/smk-cli) +- [SMK-CLI NPM repo](https://www.npmjs.com/package/@bcgov/smk-cli) Please review the SMK documentation prior to using the SMK-CLI. All SMK repositories are currently hosted on GitHub and are completely open-source. diff --git a/docs/installation.md b/docs/installation.md index 525dc86..ff99992 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -5,15 +5,15 @@ Once you have Node.js and NPM installed on your machine you're ready to download and install the SMK-CLI. Simply type the following into your command line of choice: ```bash -npm install —global smk-cli +npm install —global @bcgov/smk-cli ``` -If you prefer to install a specific version, you can check NPM for the available version list in the [NPM repository](https://www.npmjs.com/package/smk-cli/) +If you prefer to install a specific version, you can check NPM for the available version list in the [NPM repository](https://www.npmjs.com/package/@bcgov/smk-cli) then append the version tag on your install command: ```bash -npm install —global smk-cli@1.0.0-beta.6 +npm install —global @bcgov/smk-cli ``` NPM should now install all required packages as a globally accessible command line utility. You're ready to get started!