kahunas-cli 1.5.0 → 1.6.0
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 +14 -0
- package/dist/cli.js +3594 -80
- package/package.json +7 -2
package/README.md
CHANGED
|
@@ -31,6 +31,20 @@ Open `http://127.0.0.1:3000`.
|
|
|
31
31
|
|
|
32
32
|
If `auth.json` is missing, `sync` will prompt for credentials and save them after a successful login.
|
|
33
33
|
|
|
34
|
+
## Testing
|
|
35
|
+
|
|
36
|
+
Run the test suite:
|
|
37
|
+
|
|
38
|
+
```bash
|
|
39
|
+
pnpm test
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
Generate coverage reports (CI enforces coverage thresholds):
|
|
43
|
+
|
|
44
|
+
```bash
|
|
45
|
+
pnpm test:coverage
|
|
46
|
+
```
|
|
47
|
+
|
|
34
48
|
## Advanced usage
|
|
35
49
|
|
|
36
50
|
See `docs/advanced.md` for all commands, flags, and configuration options.
|