complexity-cli 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -6,20 +6,22 @@ workflows.
|
|
|
6
6
|
|
|
7
7
|
## Installation
|
|
8
8
|
|
|
9
|
+
```bash
|
|
10
|
+
npm install -g complexity-cli
|
|
11
|
+
```
|
|
12
|
+
|
|
9
13
|
### Local Development
|
|
10
14
|
|
|
15
|
+
If you want to contribute or develop locally:
|
|
16
|
+
|
|
11
17
|
```bash
|
|
18
|
+
git clone https://github.com/SamBWagner/complexity-cli.git
|
|
19
|
+
cd complexity-cli
|
|
12
20
|
npm install
|
|
13
21
|
npm run build
|
|
14
22
|
npm link
|
|
15
23
|
```
|
|
16
24
|
|
|
17
|
-
### From npm (Coming Soon)
|
|
18
|
-
|
|
19
|
-
```bash
|
|
20
|
-
npm install -g complexity-cli
|
|
21
|
-
```
|
|
22
|
-
|
|
23
25
|
## Usage
|
|
24
26
|
|
|
25
27
|
### Initialize a Complexity Map
|