@reximo/cli 0.1.0-alpha.1 → 0.1.0-alpha.2

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 +2 -0
  2. package/package.json +3 -2
package/README.md CHANGED
@@ -15,6 +15,8 @@ The current commands are intentionally small, but the package layout is prepared
15
15
  npm install -g @reximo/cli
16
16
  ```
17
17
 
18
+ For a project-local install, use `npx reximo`, `npm exec reximo`, or `./node_modules/.bin/reximo`.
19
+
18
20
  ## Local usage
19
21
 
20
22
  ```bash
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@reximo/cli",
3
- "version": "0.1.0-alpha.1",
3
+ "version": "0.1.0-alpha.2",
4
4
  "description": "Command-line interface for Reximo.",
5
5
  "type": "commonjs",
6
6
  "license": "ISC",
@@ -53,6 +53,7 @@
53
53
  "verify": "pnpm run lint && pnpm run typecheck && pnpm run test"
54
54
  },
55
55
  "dependencies": {
56
- "commander": "^14.0.3"
56
+ "commander": "^14.0.3",
57
+ "tslib": "^2.8.1"
57
58
  }
58
59
  }