@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.
Files changed (2) hide show
  1. package/README.md +6 -14
  2. 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
- To install the CLI, you can use npm:
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
- Simply replace the examples below with `npx @makerkit/cli@latest` instead of
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
- Using `npx @makerkit/cli@latest` is recommended.
17
+ ### Some commands require a Makerkit repository
27
18
 
28
- NB: commands that interact with the repository (plugins, i18n, blog) must be
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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@makerkit/cli",
3
- "version": "1.2.4",
3
+ "version": "1.2.5",
4
4
  "description": "A CLI for Makerkit",
5
5
  "type": "module",
6
6
  "exports": "./dist/index.js",