Skip to content

Commit 8b3624e

Browse files
authoredAug 23, 2021
feat: Configure schema for CLI options
Fixes #40
1 parent bc4db6d commit 8b3624e

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed
 

‎index.js

+3
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ class AdditionalStacksPlugin {
5858
usage: 'Additional stack name to deploy',
5959
shortcut: 'k',
6060
required: false,
61+
type: "string",
6162
},
6263
},
6364
},
@@ -66,6 +67,7 @@ class AdditionalStacksPlugin {
6667
'skip-additionalstacks': {
6768
usage: 'Skip deploying additional stacks',
6869
required: false,
70+
type: "boolean",
6971
},
7072
},
7173
},
@@ -81,6 +83,7 @@ class AdditionalStacksPlugin {
8183
usage: 'Additional stack name to remove',
8284
shortcut: 'k',
8385
required: false,
86+
type: "string",
8487
},
8588
},
8689
},

0 commit comments

Comments
 (0)
Please sign in to comment.