@makerkit/cli 1.2.4 → 1.2.5
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 +6 -14
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -6,27 +6,19 @@ The CLI is currently in beta.
|
|
|
6
6
|
|
|
7
7
|
## Installation
|
|
8
8
|
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
```
|
|
12
|
-
npm install -g @makerkit/cli
|
|
13
|
-
```
|
|
14
|
-
|
|
15
|
-
You may need to use `sudo` to install the CLI globally.
|
|
16
|
-
|
|
17
|
-
Alternatively, your can run commands using `npx`:
|
|
9
|
+
You can run commands using `npx`:
|
|
18
10
|
|
|
19
11
|
```
|
|
20
12
|
npx @makerkit/cli@latest <command>
|
|
21
13
|
```
|
|
22
14
|
|
|
23
|
-
|
|
24
|
-
`makerkit` to run the commands without installing the CLI globally.
|
|
15
|
+
This ensures that you always run the latest version of the CLI.
|
|
25
16
|
|
|
26
|
-
|
|
17
|
+
### Some commands require a Makerkit repository
|
|
27
18
|
|
|
28
|
-
|
|
29
|
-
launched from the root of the repository
|
|
19
|
+
Commands that interact with the repository (plugins, i18n, blog) must be
|
|
20
|
+
launched from the root of the repository, as they will read and write files
|
|
21
|
+
from the codebase.
|
|
30
22
|
|
|
31
23
|
## Usage
|
|
32
24
|
|