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