typings
Version:
The TypeScript Definition Manager
44 lines • 3.54 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var listify = require("listify");
var typings_core_1 = require("typings-core");
var cli_1 = require("./support/cli");
function help() {
return "\ntypings install (with no arguments, in package directory)\ntypings install [<name>=]<location>\n\n <name> Alternate name of the definition\n <location> The location to read from (described below)\n\nValid Locations:\n [<source>~]<pkg>[@<version>][#<tag>]\n file:<path>\n github:<org>/<repo>[/<path>][#<commitish>]\n bitbucket:<org>/<repo>[/<path>][#<commitish>]\n npm:<pkg>[/<path>]\n bower:<pkg>[/<path>]\n jspm:<pkg> (for jspm@0.17+)\n http(s)://<host>/<path>\n\n <source> The registry mirror: \"npm\", \"bower\", \"env\", \"global\", \"lib\" or \"dt\"\n When not specified, `defaultSource` in `.typingsrc` will be used.\n <path> Path to a `.d.ts` file or `typings.json`\n <host> A domain name (with optional port)\n <version> A semver range (E.g. \">=4.0\")\n <tag> The specific tag of a registry entry\n <commitish> A git commit, tag or branch\n\nOptions:\n [--save|-S] Persist to \"dependencies\"\n [--save-dev|-D] Persist to \"devDependencies\"\n [--save-peer|-P] Persist to \"peerDependencies\"\n [--global|-G] Install and persist as a global definition\n [-SG] Persist to \"globalDependencies\"\n [-DG] Persist to \"globalDevDependencies\"\n [--production] Install only production dependencies (omits dev dependencies) and\n is implictly set when environment variable NODE_ENV=production\n [--no-production] Install production and dev dependencies (overrides environment\n variable NODE_ENV=production)\n\nAliases: i, in\n";
}
exports.help = help;
function exec(args, options) {
var emitter = options.emitter, unicode = options.unicode;
if (typeof options.ambient !== 'undefined') {
cli_1.logError('The "ambient" flag is deprecated. Please use "global" instead', 'deprecated');
return;
}
if (args.length === 0) {
return cli_1.spinner(typings_core_1.install(options))
.then(function (result) {
var name = result.name, tree = result.tree;
console.log(cli_1.archifyDependencyTree({ name: name, tree: tree, unicode: unicode }));
});
}
emitter.on('reference', function (_a) {
var reference = _a.reference, resolution = _a.resolution, name = _a.name;
cli_1.logInfo("Stripped reference \"" + reference + "\" during installation from \"" + name + "\" (" + resolution + ")", 'reference');
});
emitter.on('globaldependencies', function (_a) {
var name = _a.name, dependencies = _a.dependencies;
var deps = Object.keys(dependencies).map(function (x) { return JSON.stringify(x); });
if (deps.length) {
cli_1.logInfo("\"" + name + "\" lists global dependencies on " + listify(deps) + " that must be installed manually", 'globaldependencies');
}
});
return cli_1.spinner(typings_core_1.installDependenciesRaw(args, options))
.then(function (results) {
for (var _i = 0, results_1 = results; _i < results_1.length; _i++) {
var result = results_1[_i];
var name = result.name, tree = result.tree;
console.log(cli_1.archifyDependencyTree({ name: name, tree: tree, unicode: unicode }));
}
});
}
exports.exec = exec;
//# sourceMappingURL=bin-install.js.map