ripencli 0.2.6 → 0.2.7
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/package.json +1 -1
package/README.md
CHANGED
|
@@ -14,6 +14,8 @@
|
|
|
14
14
|
- **Global packages** — check and update global installs across all* package managers
|
|
15
15
|
- **Self-update** — notifies you when a new version of ripen is available
|
|
16
16
|
- **Major bump warnings** — highlights potentially breaking updates
|
|
17
|
+
- **Scope grouping** — optionally group scoped packages (e.g. `@heroui/*`) together
|
|
18
|
+
- **Frequency sorting** — packages you update often can be surfaced to the top
|
|
17
19
|
|
|
18
20
|
## Install
|
|
19
21
|
|
|
@@ -49,6 +51,7 @@ ripen --help
|
|
|
49
51
|
| `v` | Pick specific version |
|
|
50
52
|
| `c` | View changelog / release notes |
|
|
51
53
|
| `enter` | Update selected packages |
|
|
54
|
+
| `s` | Open settings |
|
|
52
55
|
| `esc` | Cancel / go back |
|
|
53
56
|
|
|
54
57
|
## How it works
|
|
@@ -60,6 +63,17 @@ ripen --help
|
|
|
60
63
|
5. Press `c` to see GitHub release notes between your current and target version
|
|
61
64
|
6. Select the ones you want and press enter — ripen runs the update commands for you
|
|
62
65
|
|
|
66
|
+
## Settings
|
|
67
|
+
|
|
68
|
+
Press `s` to open the settings screen. Settings are persisted at `~/.config/ripen/config.json`.
|
|
69
|
+
|
|
70
|
+
| Setting | Default | Description |
|
|
71
|
+
| ---------------------------- | ------- | ------------------------------------------------------------ |
|
|
72
|
+
| Sort by update frequency | Off | Packages you update often appear at the top |
|
|
73
|
+
| Enable scope grouping | Off | Group scoped packages under their scope prefix |
|
|
74
|
+
| Show grouped scopes on top | Off | Grouped scopes appear before ungrouped packages |
|
|
75
|
+
| Grouped scopes | — | List of scopes to group (e.g. `@heroui`, `@radix-ui`) |
|
|
76
|
+
|
|
63
77
|
When using `ripen -g`, all available package managers (npm, pnpm, yarn) are checked in parallel so you see every global package in one place. Bun is not included in global checking because it doesn't provide a JSON output for its outdated command.
|
|
64
78
|
|
|
65
79
|
## License
|