This commit is contained in:
nvms 2024-10-09 18:12:54 -04:00
parent e717902414
commit 9ec632ec2d
2 changed files with 2 additions and 2 deletions

View File

@ -19,7 +19,7 @@ For the minimalist. For the developer who misses the old web. For the developer
```bash
# In an empty directory
$ esr --init
$ esr init
$ esr --serve src/index.ts
esr :: Serving on http://localhost:1234
```

View File

@ -13,5 +13,5 @@ func Die(format string, v ...interface{}) {
func ShowHelpMessage() {
fmt.Println(`Usage:
esr [--config <path>] [--serve] [--build] [--watch] <entrypoint>`)
esr [init] [--config <path>] [--serve] [--build] [--watch] <entrypoint>`)
}