feat(cli): rename extension short option from -e to -x

BREAKING CHANGE: if you've been using the `-e` short option you should change it to `-x` or use the long option name `--extension`
This commit is contained in:
Joakim Carlstein 2023-12-20 09:22:42 +01:00 committed by Joakim Carlstein
parent f9a16d87a1
commit e6e4433018
5 changed files with 28 additions and 11 deletions

View file

@ -44,13 +44,13 @@ bun add @emigrate/cli
Create a new migration:
```bash
npx emigrate new -d migrations -e .js create some fancy table
npx emigrate new -d migrations create some fancy table
# or
pnpm emigrate new -d migrations -e .js create some fancy table
pnpm emigrate new -d migrations create some fancy table
# or
yarn emigrate new -d migrations -e .js create some fancy table
yarn emigrate new -d migrations create some fancy table
# or
bunx --bun emigrate new -d migrations -e .js create some fancy table
bunx --bun emigrate new -d migrations create some fancy table
```
Will create a new empty JavaScript migration file with the name "YYYYMMDDHHmmssuuu_create_some_fancy_table.js" in the `migrations` directory.