Skip to content

Commit 7797726

Browse files
committed
fix: align CLI help text bin name with package.json
Help text referenced 'dappbooster-starter' but the actual executable name from package.json is 'dappbooster'.
1 parent 976b2b2 commit 7797726

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

source/cli.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { runNonInteractive } from './nonInteractive.js'
77
const cli = meow(
88
`
99
Usage
10-
$ dappbooster-starter [options]
10+
$ dappbooster [options]
1111
1212
Options
1313
--name <string> Project name (alphanumeric, underscores)
@@ -34,16 +34,16 @@ const cli = meow(
3434
3535
Examples
3636
Interactive:
37-
$ dappbooster-starter
37+
$ dappbooster
3838
3939
Full install (non-interactive):
40-
$ dappbooster-starter --ni --name my_dapp --mode full
40+
$ dappbooster --ni --name my_dapp --mode full
4141
4242
Custom install with specific features:
43-
$ dappbooster-starter --ni --name my_dapp --mode custom --features demo,subgraph
43+
$ dappbooster --ni --name my_dapp --mode custom --features demo,subgraph
4444
4545
Get feature metadata:
46-
$ dappbooster-starter --info
46+
$ dappbooster --info
4747
`,
4848
{
4949
importMeta: import.meta,

0 commit comments

Comments
 (0)