Skip to content

Commit

Permalink
fix environment-id and environment alias conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
winklertomas committed Jul 7, 2023
1 parent f2eb293 commit 39e4273
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@kontent-ai/cli",
"version": "0.8.0",
"version": "0.8.1",
"description": "Command line interface tool that can be used for generating and runningKontent.ai migration scripts",
"main": "./lib/index.js",
"types": "./lib/types/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion src/cmds/backup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const kontentBackupCommand: yargs.CommandModule = {
default: true,
},
'environment-id': {
alias: 'e',
alias: 'eid',
describe: 'Environment ID to run the migration script on',
type: 'string',
},
Expand Down
2 changes: 1 addition & 1 deletion src/cmds/environment/add.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const addEnvironmentCommand: yargs.CommandModule = {
type: 'string',
},
'environment-id': {
alias: 'e',
alias: 'eid',
describe: 'Environment ID to run the migration script on',
type: 'string',
},
Expand Down
2 changes: 1 addition & 1 deletion src/cmds/migration/run.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const runMigrationCommand: yargs.CommandModule = {
type: 'string',
},
'environment-id': {
alias: 'e',
alias: 'eid',
describe: 'Environment ID to run the migration script on',
type: 'string',
},
Expand Down

0 comments on commit 39e4273

Please sign in to comment.