ripencli 1.2.1 → 1.2.3
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 +1 -1
- package/dist/cli.js +2 -4
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -87,7 +87,7 @@ Press `s` to open the settings screen. Settings are persisted at `~/.config/ripe
|
|
|
87
87
|
| Enable scope grouping | Off | Group scoped packages under their scope prefix |
|
|
88
88
|
| Show grouped scopes on top | Off | Grouped scopes appear before ungrouped packages |
|
|
89
89
|
| Grouped scopes | — | List of scopes to group (e.g. `@heroui`, `@radix-ui`) |
|
|
90
|
-
| SFW Firewall | Off | Prepend `sfw` before every generated command (requires [sfw](https://github.com/
|
|
90
|
+
| SFW Firewall | Off | Prepend `sfw` before every generated command (requires [sfw](https://github.com/SocketDev/sfw-free)) |
|
|
91
91
|
|
|
92
92
|
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.
|
|
93
93
|
|
package/dist/cli.js
CHANGED
|
@@ -575,8 +575,7 @@ function parseYarnOutdated(raw, global) {
|
|
|
575
575
|
//#region src/executor.ts
|
|
576
576
|
function buildUpdateCommands(manager, packages, global = false, sfwFirewall = false) {
|
|
577
577
|
const commands = [];
|
|
578
|
-
const
|
|
579
|
-
const devDeps = packages.filter((p) => !global && p.type === "devDependencies");
|
|
578
|
+
const localPkgs = packages.filter((p) => !global && p.type !== "global");
|
|
580
579
|
const globalPkgs = packages.filter((p) => global || p.type === "global");
|
|
581
580
|
const makeCmd = (mgr, pkgs, flags) => {
|
|
582
581
|
const pkgArgs = pkgs.map((pkg) => {
|
|
@@ -594,8 +593,7 @@ function buildUpdateCommands(manager, packages, global = false, sfwFirewall = fa
|
|
|
594
593
|
]).join(" ")}`;
|
|
595
594
|
return sfwFirewall ? `sfw ${cmd}` : cmd;
|
|
596
595
|
};
|
|
597
|
-
if (
|
|
598
|
-
if (devDeps.length > 0) commands.push(makeCmd(manager, devDeps, [manager === "bun" ? "-d" : "-D"]));
|
|
596
|
+
if (localPkgs.length > 0) commands.push(makeCmd(manager, localPkgs, []));
|
|
599
597
|
if (globalPkgs.length > 0) {
|
|
600
598
|
const byManager = /* @__PURE__ */ new Map();
|
|
601
599
|
for (const pkg of globalPkgs) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ripencli",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.3",
|
|
4
4
|
"description": "Interactive dependency updater for npm, pnpm, yarn, and bun",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": {
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"dev": "tsx src/cli.tsx",
|
|
36
36
|
"typecheck": "tsc --noEmit",
|
|
37
37
|
"start": "node dist/cli.js",
|
|
38
|
-
"check": "node scripts/pr-checks.ts",
|
|
38
|
+
"check": "node --no-warnings scripts/pr-checks.ts",
|
|
39
39
|
"docs:dev": "pnpm --prefix docs dev",
|
|
40
40
|
"docs:build": "pnpm --prefix docs build",
|
|
41
41
|
"docs:start": "pnpm --prefix docs start"
|
|
@@ -66,15 +66,15 @@
|
|
|
66
66
|
],
|
|
67
67
|
"dependencies": {
|
|
68
68
|
"execa": "9.6.1",
|
|
69
|
-
"ink": "7.0.
|
|
69
|
+
"ink": "7.0.5",
|
|
70
70
|
"ink-scroll-view": "0.3.7",
|
|
71
|
-
"react": "19.2.
|
|
71
|
+
"react": "19.2.7"
|
|
72
72
|
},
|
|
73
73
|
"devDependencies": {
|
|
74
74
|
"@types/node": "24.12.2",
|
|
75
|
-
"@types/react": "19.2.
|
|
75
|
+
"@types/react": "19.2.16",
|
|
76
76
|
"prettier": "3.8.3",
|
|
77
|
-
"tsdown": "0.22.
|
|
77
|
+
"tsdown": "0.22.2",
|
|
78
78
|
"typescript": "6.0.3"
|
|
79
79
|
}
|
|
80
80
|
}
|