typescript-assistant
Version:
Combines and integrates professional Typescript tools into your project
16 lines • 543 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.createAssistCommand = (deps) => {
let { formatter, linter, compiler, nyc, server, watcher } = deps;
return {
execute: () => {
watcher.watchSourceFileChanged();
server.start();
formatter.startVerifying(['source-files-changed']);
linter.start('format-verified');
nyc.start(['source-files-changed']);
compiler.start();
}
};
};
//# sourceMappingURL=assist.js.map