ripencli 1.2.2 → 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/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/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
|
}
|