We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 13a6460 + a8e52e8 commit ec5ca0eCopy full SHA for ec5ca0e
2 files changed
src/adapters/base-class.ts
@@ -519,7 +519,6 @@ export default class BaseClass {
519
(await ux.inquire({
520
type: 'checkbox',
521
name: 'variablePreparationType',
522
- default: this.config.framework,
523
choices: this.config.variablePreparationTypeOptions,
524
message: 'Import variables from a stack and/or manually add custom variables to the list',
525
}));
src/base-command.ts
@@ -62,6 +62,9 @@ export abstract class BaseCommand<T extends typeof Command> extends Command {
62
this.args = args as Args<T>;
63
64
ux.registerSearchPlugin();
65
+ if (process.stdin.isTTY && typeof process.stdin.setMaxListeners === 'function') {
66
+ process.stdin.setMaxListeners(20);
67
+ }
68
this.$event = new EventEmitter();
69
70
await this.prepareConfig();
0 commit comments