@hkvstore/taco-cli
Version:
taco-cli is a command-line interface for rapid Apache Cordova development (forked from Microsoft taco-cli)
30 lines (28 loc) • 1.11 kB
JavaScript
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for details.
/// <reference path="../../typings/tacoUtils.d.ts" />
/// <reference path="../../typings/node.d.ts" />
/// <reference path="../../typings/helpCommandBase.d.ts" />
;
var __extends = (this && this.__extends) || function (d, b) {
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
var path = require("path");
var tacoUtility = require("taco-utils");
var HelpCommandBase = tacoUtility.HelpCommandBase;
/**
* Help handles "Taco Help"
*/
var Help = (function (_super) {
__extends(Help, _super);
function Help() {
_super.call(this, Help.TACO_CLI_NAME, path.join(__dirname, "./commands.json"), require("../resources/resourceManager"));
require("./logo");
}
Help.TACO_CLI_NAME = "taco";
return Help;
}(HelpCommandBase));
module.exports = Help;
//# sourceMappingURL=help.js.map