nativescript
Version:
Command-line interface for building NativeScript projects
16 lines • 500 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.SetupCommand = void 0;
const yok_1 = require("../common/yok");
class SetupCommand {
constructor($doctorService) {
this.$doctorService = $doctorService;
this.allowedParameters = [];
}
execute(args) {
return this.$doctorService.runSetupScript();
}
}
exports.SetupCommand = SetupCommand;
yok_1.injector.registerCommand("setup|*", SetupCommand);
//# sourceMappingURL=setup.js.map
;