Skip to content

Commit 04d20bd

Browse files
committed
[add] CLI output based on CommanderJSX
[add] Dependency Badge based on Libraries.io [optimize] update Upstream packages
1 parent 2d50bc5 commit 04d20bd

File tree

8 files changed

+1754
-239
lines changed

8 files changed

+1754
-239
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
node_modules/
22
package-lock.json
33
yarn.lock
4-
dist/
4+
dist/
5+
.vscode/settings.json

.npmignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.vscode/
2+
.husky/
3+
.github/

ReadMe.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@
22

33
A **file downloader** based on [Git][1] CLI
44

5-
[![CI & CD](https://github.com/idea2app/get-git-folder/actions/workflows/main.yml/badge.svg)][2]
5+
[![NPM Dependency](https://img.shields.io/librariesio/github/idea2app/get-git-folder.svg)][2]
6+
[![CI & CD](https://github.com/idea2app/get-git-folder/actions/workflows/main.yml/badge.svg)][3]
67

7-
[![NPM](https://nodei.co/npm/get-git-folder.png?downloads=true&downloadRank=true&stars=true)][3]
8+
[![NPM](https://nodei.co/npm/get-git-folder.png?downloads=true&downloadRank=true&stars=true)][4]
89

910
## Usage
1011

@@ -15,5 +16,6 @@ get-git-folder https://github.com/your-org/your-repo main your-folder
1516
```
1617

1718
[1]: https://git-scm.com/
18-
[2]: https://github.com/idea2app/get-git-folder/actions/workflows/main.yml
19-
[3]: https://nodei.co/npm/get-git-folder/
19+
[2]: https://libraries.io/npm/get-git-folder
20+
[3]: https://github.com/idea2app/get-git-folder/actions/workflows/main.yml
21+
[4]: https://nodei.co/npm/get-git-folder/

package.json

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "get-git-folder",
3-
"version": "0.1.0",
3+
"version": "0.1.2",
44
"license": "LGPL-3.0",
55
"author": "[email protected]",
66
"description": "A file downloader based on Git CLI",
@@ -21,13 +21,14 @@
2121
"type": "module",
2222
"bin": "dist/index.js",
2323
"dependencies": {
24-
"zx": "^7.2.2"
24+
"commander-jsx": "^0.6.9",
25+
"zx": "^7.2.3"
2526
},
2627
"devDependencies": {
2728
"husky": "^8.0.3",
28-
"lint-staged": "^13.2.2",
29-
"prettier": "^2.8.8",
30-
"typescript": "^5.1.3"
29+
"lint-staged": "^14.0.0",
30+
"prettier": "^3.0.2",
31+
"typescript": "~5.1.6"
3132
},
3233
"prettier": {
3334
"tabWidth": 4,

0 commit comments

Comments
 (0)