ripencli 0.1.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/LICENSE +21 -0
- package/README.md +58 -0
- package/dist/cli.js +2089 -0
- package/package.json +43 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Yusif Aliyev
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
# ripen
|
|
2
|
+
|
|
3
|
+
> Interactive dependency updater for pnpm and npm
|
|
4
|
+
|
|
5
|
+
 
|
|
6
|
+
|
|
7
|
+
## Features
|
|
8
|
+
|
|
9
|
+
- **Interactive TUI** — navigate packages with arrow keys, select with space
|
|
10
|
+
- **Version picker** — choose any specific version from the npm registry, not just latest
|
|
11
|
+
- **Changelog viewer** — see GitHub release notes before you update
|
|
12
|
+
- **pnpm & npm** — auto-detects your package manager
|
|
13
|
+
- **Global packages** — check and update global installs too
|
|
14
|
+
- **Major bump warnings** — highlights potentially breaking updates
|
|
15
|
+
|
|
16
|
+
## Install
|
|
17
|
+
|
|
18
|
+
```bash
|
|
19
|
+
pnpm add -g ripen
|
|
20
|
+
# or
|
|
21
|
+
npm install -g ripen
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
## Usage
|
|
25
|
+
|
|
26
|
+
```bash
|
|
27
|
+
# Check current project
|
|
28
|
+
ripen
|
|
29
|
+
|
|
30
|
+
# Check global packages
|
|
31
|
+
ripen -g
|
|
32
|
+
|
|
33
|
+
# Help
|
|
34
|
+
ripen --help
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
## Controls
|
|
38
|
+
|
|
39
|
+
| Key | Action |
|
|
40
|
+
| ------- | ------------------------------ |
|
|
41
|
+
| `↑ ↓` | Navigate packages |
|
|
42
|
+
| `space` | Toggle select |
|
|
43
|
+
| `v` | Pick specific version |
|
|
44
|
+
| `c` | View changelog / release notes |
|
|
45
|
+
| `enter` | Update selected packages |
|
|
46
|
+
| `esc` | Cancel / go back |
|
|
47
|
+
|
|
48
|
+
## How it works
|
|
49
|
+
|
|
50
|
+
1. Runs `pnpm outdated --json` (or npm equivalent) to find outdated packages
|
|
51
|
+
2. Shows them in a colorful interactive list
|
|
52
|
+
3. Press `v` on any package to pick a specific version from the npm registry
|
|
53
|
+
4. Press `c` to see GitHub release notes between your current and target version
|
|
54
|
+
5. Select the ones you want and press enter — ripen runs the update commands for you
|
|
55
|
+
|
|
56
|
+
## License
|
|
57
|
+
|
|
58
|
+
MIT
|