UNPKG

@sentry/wizard

Version:

Sentry wizard helping you to configure your project

22 lines 757 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Welcome = void 0; const Logging_1 = require("../Helper/Logging"); const BaseStep_1 = require("./BaseStep"); class Welcome extends BaseStep_1.BaseStep { static _didShow = false; // eslint-disable-next-line @typescript-eslint/require-await async emit(_answers) { if (Welcome._didShow) { return {}; } if (this._argv.uninstall === false) { (0, Logging_1.green)('Sentry Wizard will help you to configure your project'); (0, Logging_1.dim)('Thank you for using Sentry :)'); } Welcome._didShow = true; return {}; } } exports.Welcome = Welcome; //# sourceMappingURL=Welcome.js.map