Skip to content

Commit 39e4273

Browse files
committed
fix environment-id and environment alias conflict
1 parent f2eb293 commit 39e4273

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@kontent-ai/cli",
3-
"version": "0.8.0",
3+
"version": "0.8.1",
44
"description": "Command line interface tool that can be used for generating and runningKontent.ai migration scripts",
55
"main": "./lib/index.js",
66
"types": "./lib/types/index.d.ts",

src/cmds/backup.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ const kontentBackupCommand: yargs.CommandModule = {
2828
default: true,
2929
},
3030
'environment-id': {
31-
alias: 'e',
31+
alias: 'eid',
3232
describe: 'Environment ID to run the migration script on',
3333
type: 'string',
3434
},

src/cmds/environment/add.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const addEnvironmentCommand: yargs.CommandModule = {
1313
type: 'string',
1414
},
1515
'environment-id': {
16-
alias: 'e',
16+
alias: 'eid',
1717
describe: 'Environment ID to run the migration script on',
1818
type: 'string',
1919
},

src/cmds/migration/run.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const runMigrationCommand: yargs.CommandModule = {
2222
type: 'string',
2323
},
2424
'environment-id': {
25-
alias: 'e',
25+
alias: 'eid',
2626
describe: 'Environment ID to run the migration script on',
2727
type: 'string',
2828
},

0 commit comments

Comments
 (0)