@code-insights/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 +13 -8
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -7,25 +7,30 @@ Full documentation: [docs.code-insights.app](https://docs.code-insights.app)
|
|
|
7
7
|
## Prerequisites
|
|
8
8
|
|
|
9
9
|
- **Node.js** 18 or later
|
|
10
|
-
- **
|
|
11
|
-
- A **Firebase project** with Firestore enabled (see [Quick Start](../README.md#quick-start))
|
|
10
|
+
- A **Firebase project** with Firestore enabled (see [Quick Start](https://docs.code-insights.app/getting-started/quick-start/))
|
|
12
11
|
|
|
13
12
|
## Installation
|
|
14
13
|
|
|
15
14
|
```bash
|
|
16
|
-
|
|
17
|
-
cd cli
|
|
18
|
-
pnpm install
|
|
19
|
-
pnpm build
|
|
20
|
-
npm link # Makes `code-insights` available globally
|
|
15
|
+
npm install -g @code-insights/cli
|
|
21
16
|
```
|
|
22
17
|
|
|
23
|
-
|
|
18
|
+
Verify it works:
|
|
24
19
|
|
|
25
20
|
```bash
|
|
26
21
|
code-insights --version
|
|
27
22
|
```
|
|
28
23
|
|
|
24
|
+
### Development Setup
|
|
25
|
+
|
|
26
|
+
```bash
|
|
27
|
+
# From the repo root
|
|
28
|
+
cd cli
|
|
29
|
+
pnpm install
|
|
30
|
+
pnpm build
|
|
31
|
+
npm link # Makes `code-insights` available globally
|
|
32
|
+
```
|
|
33
|
+
|
|
29
34
|
## Commands
|
|
30
35
|
|
|
31
36
|
### `code-insights init`
|