Skip to content

Commit 2d5f0d6

Browse files
authored
feat: rename @hono/command to @hono/cli (npm#5)
1 parent 67d943d commit 2d5f0d6

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
# @hono/command
1+
# @hono/cli
22

3-
A CLI command for Hono
3+
CLI for Hono
44

55
## Installation
66

77
```bash
8-
npm install -g @hono/command
8+
npm install -g @hono/cli
99
```
1010

1111
## Usage

bun.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@hono/command",
2+
"name": "@hono/cli",
33
"version": "0.0.1",
44
"type": "module",
55
"bin": {
@@ -21,7 +21,7 @@
2121
"license": "MIT",
2222
"repository": {
2323
"type": "git",
24-
"url": "https://github.com/honojs/command.git"
24+
"url": "https://github.com/honojs/cli.git"
2525
},
2626
"publishConfig": {
2727
"registry": "https://registry.npmjs.org",

src/cli.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const program = new Command()
1414

1515
program
1616
.name('hono')
17-
.description('A CLI command for Hono')
17+
.description('CLI for Hono')
1818
.version(packageJson.version, '-v, --version', 'display version number')
1919

2020
// Register commands

0 commit comments

Comments
 (0)