ripencli 0.1.5 → 0.1.7

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.
Files changed (2) hide show
  1. package/dist/cli.js +8 -13
  2. package/package.json +28 -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__ */ jsxs(Text, {
1363
+ children: [/* @__PURE__ */ jsx(Text, {
1364
1364
  color: "gray",
1365
- children: [" ", "No GitHub release notes found between these versions."]
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
- "✓ All packages are up to date in",
1956
- " ",
1957
- /* @__PURE__ */ jsx(Text, {
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,28 @@
1
1
  {
2
2
  "name": "ripencli",
3
- "version": "0.1.5",
3
+ "version": "0.1.7",
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
+ "funding": [
12
+ {
13
+ "type": "patreon",
14
+ "url": "https://patreon.com/yusifaliyevpro"
15
+ },
16
+ {
17
+ "type": "kofe.al",
18
+ "url": "https://kofe.al/@yusifaliyevpro"
19
+ }
20
+ ],
21
+ "homepage": "https://github.com/yusifaliyevpro/ripen#readme",
22
+ "repository": {
23
+ "type": "git",
24
+ "url": "git+https://github.com/yusifaliyevpro/ripen.git"
25
+ },
5
26
  "type": "module",
6
27
  "bin": {
7
28
  "ripen": "./dist/cli.js"
@@ -10,7 +31,8 @@
10
31
  "build": "tsdown",
11
32
  "dev": "tsx src/cli.tsx",
12
33
  "typecheck": "tsc --noEmit",
13
- "start": "node dist/cli.js"
34
+ "start": "node dist/cli.js",
35
+ "checks": "node scripts/pr-checks.ts"
14
36
  },
15
37
  "keywords": [
16
38
  "pnpm",
@@ -21,7 +43,9 @@
21
43
  "cli",
22
44
  "tui"
23
45
  ],
24
- "license": "MIT",
46
+ "publishConfig": {
47
+ "access": "public"
48
+ },
25
49
  "engines": {
26
50
  "node": ">=18"
27
51
  },
@@ -37,6 +61,7 @@
37
61
  "devDependencies": {
38
62
  "@types/node": "^25.5.0",
39
63
  "@types/react": "^19.2.14",
64
+ "prettier": "^3.8.1",
40
65
  "tsdown": "^0.21.4",
41
66
  "typescript": "^5.5.0"
42
67
  }