ripencli 0.1.5 → 0.1.6
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/dist/cli.js +8 -13
- package/package.json +18 -3
package/dist/cli.js
CHANGED
|
@@ -878,7 +878,7 @@ function PackageList({ packages, onToggle, onToggleGroup, onToggleMany, onSelect
|
|
|
878
878
|
color: "greenBright",
|
|
879
879
|
children: isFocused ? "❯" : " "
|
|
880
880
|
}),
|
|
881
|
-
row.indented && /* @__PURE__ */ jsx(Text, { children: "
|
|
881
|
+
row.indented && /* @__PURE__ */ jsx(Text, { children: " " }),
|
|
882
882
|
/* @__PURE__ */ jsx(Text, {
|
|
883
883
|
color: pkg.selected ? "greenBright" : "gray",
|
|
884
884
|
children: pkg.selected ? "◉" : "○"
|
|
@@ -1360,9 +1360,9 @@ function ChangelogPanel({ pkg, onClose }) {
|
|
|
1360
1360
|
children: " fetching release notes…"
|
|
1361
1361
|
}) : entries.length === 0 ? /* @__PURE__ */ jsxs(Box, {
|
|
1362
1362
|
flexDirection: "column",
|
|
1363
|
-
children: [/* @__PURE__ */
|
|
1363
|
+
children: [/* @__PURE__ */ jsx(Text, {
|
|
1364
1364
|
color: "gray",
|
|
1365
|
-
children:
|
|
1365
|
+
children: " No GitHub release notes found between these versions."
|
|
1366
1366
|
}), releasesPageUrl ? /* @__PURE__ */ jsxs(Text, {
|
|
1367
1367
|
color: "gray",
|
|
1368
1368
|
children: [
|
|
@@ -1664,8 +1664,7 @@ function SelfUpdatePrompt({ currentVersion, latestVersion, updating, error, onUp
|
|
|
1664
1664
|
marginTop: 1,
|
|
1665
1665
|
flexDirection: "column",
|
|
1666
1666
|
children: /* @__PURE__ */ jsxs(Text, { children: [
|
|
1667
|
-
"A new version is available!",
|
|
1668
|
-
" ",
|
|
1667
|
+
"A new version is available! ",
|
|
1669
1668
|
/* @__PURE__ */ jsx(Text, {
|
|
1670
1669
|
color: "gray",
|
|
1671
1670
|
children: currentVersion
|
|
@@ -1951,14 +1950,10 @@ function App({ project, global, version, installManager }) {
|
|
|
1951
1950
|
marginTop: 1,
|
|
1952
1951
|
children: /* @__PURE__ */ jsxs(Text, {
|
|
1953
1952
|
color: "gray",
|
|
1954
|
-
children: [
|
|
1955
|
-
|
|
1956
|
-
"
|
|
1957
|
-
|
|
1958
|
-
color: "white",
|
|
1959
|
-
children: global ? "global" : project.name
|
|
1960
|
-
})
|
|
1961
|
-
]
|
|
1953
|
+
children: ["✓ All packages are up to date in ", /* @__PURE__ */ jsx(Text, {
|
|
1954
|
+
color: "white",
|
|
1955
|
+
children: global ? "global" : project.name
|
|
1956
|
+
})]
|
|
1962
1957
|
})
|
|
1963
1958
|
})]
|
|
1964
1959
|
});
|
package/package.json
CHANGED
|
@@ -1,7 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ripencli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.6",
|
|
4
4
|
"description": "Interactive dependency updater for npm, pnpm, and yarn",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"author": {
|
|
7
|
+
"name": "Yusif Aliyev",
|
|
8
|
+
"email": "yusifaliyevpro@gmail.com",
|
|
9
|
+
"url": "https://yusifaliyevpro.com"
|
|
10
|
+
},
|
|
11
|
+
"homepage": "https://github.com/yusifaliyevpro/ripen#readme",
|
|
12
|
+
"repository": {
|
|
13
|
+
"type": "git",
|
|
14
|
+
"url": "git+https://github.com/yusifaliyevpro/ripen.git"
|
|
15
|
+
},
|
|
5
16
|
"type": "module",
|
|
6
17
|
"bin": {
|
|
7
18
|
"ripen": "./dist/cli.js"
|
|
@@ -10,7 +21,8 @@
|
|
|
10
21
|
"build": "tsdown",
|
|
11
22
|
"dev": "tsx src/cli.tsx",
|
|
12
23
|
"typecheck": "tsc --noEmit",
|
|
13
|
-
"start": "node dist/cli.js"
|
|
24
|
+
"start": "node dist/cli.js",
|
|
25
|
+
"checks": "node scripts/pr-checks.ts"
|
|
14
26
|
},
|
|
15
27
|
"keywords": [
|
|
16
28
|
"pnpm",
|
|
@@ -21,7 +33,9 @@
|
|
|
21
33
|
"cli",
|
|
22
34
|
"tui"
|
|
23
35
|
],
|
|
24
|
-
"
|
|
36
|
+
"publishConfig": {
|
|
37
|
+
"access": "public"
|
|
38
|
+
},
|
|
25
39
|
"engines": {
|
|
26
40
|
"node": ">=18"
|
|
27
41
|
},
|
|
@@ -37,6 +51,7 @@
|
|
|
37
51
|
"devDependencies": {
|
|
38
52
|
"@types/node": "^25.5.0",
|
|
39
53
|
"@types/react": "^19.2.14",
|
|
54
|
+
"prettier": "^3.8.1",
|
|
40
55
|
"tsdown": "^0.21.4",
|
|
41
56
|
"typescript": "^5.5.0"
|
|
42
57
|
}
|