jetup
Version:
Jetup: JavaScript Project Setup! Jetting-up your next JS project in seconds with one command, using fully modular, customizable presets, instantly ready to code!.
18 lines • 628 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.EsLintModule = void 0;
const framework_1 = require("../../framework");
const utils_1 = require("../../utils");
class EsLintModule extends framework_1.BaseModule {
constructor() {
super(...arguments);
this.registry = EsLintModule;
}
async setup() {
this.logger.info(`executing: npm init @eslint/config@latest`);
this.logger.stop();
await (0, utils_1.runCommandInAlternateScreen)('npm init @eslint/config@latest');
}
}
exports.EsLintModule = EsLintModule;
//# sourceMappingURL=index.js.map