@leverege/build-tools 2.21.13 → 2.21.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Binary file
@@ -83,7 +83,7 @@ if (INTERACTIVE_MODE) {
83
83
  const {
84
84
  targetEnv
85
85
  } = await prompt([{
86
- type: 'select',
86
+ type: 'autocomplete',
87
87
  name: 'targetEnv',
88
88
  message: 'To which environment would you like to deploy?',
89
89
  choices: Object.values(targets).map(t => {
@@ -83,7 +83,7 @@ if (INTERACTIVE_MODE) {
83
83
  const {
84
84
  targetEnv
85
85
  } = await prompt([{
86
- type: 'select',
86
+ type: 'autocomplete',
87
87
  name: 'targetEnv',
88
88
  message: 'To which environment would you like to deploy?',
89
89
  choices: Object.values(targets).map(t => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leverege/build-tools",
3
- "version": "2.21.13",
3
+ "version": "2.21.14",
4
4
  "description": "A collection of build / support tools for Leverege developers",
5
5
  "main": "index.js",
6
6
  "repository": {
@@ -99,7 +99,7 @@ const targets = Object
99
99
 
100
100
  if ( INTERACTIVE_MODE ) {
101
101
  const { targetEnv } = await prompt( [ {
102
- type : 'select',
102
+ type : 'autocomplete',
103
103
  name : 'targetEnv',
104
104
  message : 'To which environment would you like to deploy?',
105
105
  choices : Object.values( targets ).map( ( t ) => {