@sentry/wizard
Version:
Sentry wizard helping you to configure your project
11 lines (8 loc) • 320 B
text/typescript
import type { Answers } from 'inquirer';
import { getCurrentIntegration } from '../Helper/Wizard';
import { BaseStep } from './BaseStep';
export class ShouldConfigure extends BaseStep {
public async emit(answers: Answers): Promise<Answers> {
return getCurrentIntegration(answers).shouldConfigure(answers);
}
}