ripencli 0.3.3 → 1.0.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 +5 -1
- package/dist/cli.js +608 -602
- package/package.json +18 -6
package/README.md
CHANGED
|
@@ -15,6 +15,7 @@
|
|
|
15
15
|
- **Changelog viewer** — see GitHub release notes before you update
|
|
16
16
|
- **npm, pnpm, yarn & bun** — auto-detects your package manager
|
|
17
17
|
- **Global packages** — check and update global installs across all* package managers
|
|
18
|
+
- **Show all packages** — `ripen --all` lists every dependency, not just outdated ones (great for checking changelogs or downgrading)
|
|
18
19
|
- **Self-update** — notifies you when a new version of ripen is available
|
|
19
20
|
- **Major bump warnings** — highlights potentially breaking updates
|
|
20
21
|
- **Scope grouping** — optionally group scoped packages (e.g. `@heroui/*`) together
|
|
@@ -41,6 +42,9 @@ ripen
|
|
|
41
42
|
# Check global packages (scans npm, pnpm, and yarn)
|
|
42
43
|
ripen -g
|
|
43
44
|
|
|
45
|
+
# Show all packages, not just outdated ones
|
|
46
|
+
ripen --all
|
|
47
|
+
|
|
44
48
|
# Help
|
|
45
49
|
ripen --help
|
|
46
50
|
```
|
|
@@ -61,7 +65,7 @@ ripen --help
|
|
|
61
65
|
|
|
62
66
|
1. Reads your `package.json` and checks each dependency against the npm registry directly
|
|
63
67
|
2. Detects your package manager from the lock file (`bun.lock`, `pnpm-lock.yaml`, `package-lock.json`, or `yarn.lock`) for running updates
|
|
64
|
-
3. Shows outdated packages in a colorful interactive list
|
|
68
|
+
3. Shows outdated packages in a colorful interactive list (use `--all` to show every package, including up-to-date ones)
|
|
65
69
|
4. Press `v` on any package to pick a specific version from the npm registry
|
|
66
70
|
5. Press `c` to see GitHub release notes between your current and target version
|
|
67
71
|
6. Select the ones you want and press enter — ripen runs the update commands for you
|