gh-sweep 1.0.4 → 1.0.5
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 +11 -0
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
Quickly review and clean up your GitHub repos from the terminal. Flip through your repos one by one, archiving or deleting as you go.
|
|
4
4
|
|
|
5
|
+
<img width="2098" height="1558" alt="2026-04-06 at 16 16 16@2x" src="https://github.com/user-attachments/assets/10301721-cc70-45ca-a8cb-0a9a4aaaf997" />
|
|
6
|
+
|
|
5
7
|
## Install
|
|
6
8
|
|
|
7
9
|
```
|
|
@@ -34,6 +36,15 @@ Run `gh-sweep` and use the keyboard to navigate:
|
|
|
34
36
|
| `r` | Reload repo list |
|
|
35
37
|
| `q` | Quit |
|
|
36
38
|
|
|
39
|
+
## Releasing
|
|
40
|
+
|
|
41
|
+
```
|
|
42
|
+
npm version patch # or minor, major
|
|
43
|
+
git push --follow-tags
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
Then create a GitHub release from the tag to trigger the npm publish.
|
|
47
|
+
|
|
37
48
|
## License
|
|
38
49
|
|
|
39
50
|
MIT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gh-sweep",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.5",
|
|
4
4
|
"description": "Interactive CLI to review and clean up your GitHub repos",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -27,10 +27,10 @@
|
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"@biomejs/biome": "^2.4.10",
|
|
29
29
|
"@octokit/rest": "^22.0.1",
|
|
30
|
-
"@types/node": "^
|
|
30
|
+
"@types/node": "^25.5.2",
|
|
31
31
|
"@types/react": "^19.2.14",
|
|
32
32
|
"tsup": "^8.5.1",
|
|
33
|
-
"typescript": "^
|
|
33
|
+
"typescript": "^6.0.2",
|
|
34
34
|
"vitest": "^4.1.2"
|
|
35
35
|
}
|
|
36
36
|
}
|