UNPKG

nativescript

Version:

Command-line interface for building NativeScript projects

21 lines 602 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.StartCommand = void 0; const header_1 = require("../common/header"); const yok_1 = require("../common/yok"); class StartCommand { constructor($startService) { this.$startService = $startService; } async execute(args) { (0, header_1.printHeader)(); this.$startService.start(); return; } async canExecute(args) { return true; } } exports.StartCommand = StartCommand; yok_1.injector.registerCommand("start", StartCommand); //# sourceMappingURL=start.js.map