Skip to content
This repository was archived by the owner on Mar 4, 2025. It is now read-only.

Commit 7d0522d

Browse files
committed
feat: add alias for --edge and --info
1 parent 5610873 commit 7d0522d

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,8 @@ yarn create nuxt-app <my-project>
6767

6868
### `--edge`
6969

70+
Alias: `-e`.
71+
7072
To install [nuxt-edge](https://www.npmjs.com/package/nuxt-edge) instead of [nuxt](https://www.npmjs.com/package/nuxt), add the command line option `--edge`:
7173

7274
```bash
@@ -87,7 +89,7 @@ yarn create nuxt-app <my-project> --edge
8789

8890
### `--info`
8991

90-
Print out debugging information relating to the local environment and exit.
92+
Alias: `-i`. Print out debugging information relating to the local environment and exit.
9193

9294
### `--help`
9395

cli.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ const showEnvInfo = async () => {
2525

2626
cli
2727
.command('[out-dir]', 'Generate in a custom directory or current directory')
28-
.option('--edge', 'To install `nuxt-edge` instead of `nuxt`')
29-
.option('--info', 'Print out debugging information relating to the local environment')
28+
.option('-e, --edge', 'To install `nuxt-edge` instead of `nuxt`')
29+
.option('-i, --info', 'Print out debugging information relating to the local environment')
3030
.option('--verbose', 'Show debug logs')
3131
.action((outDir = '.', cliOptions) => {
3232
if (cliOptions.info) {

0 commit comments

Comments
 (0)