@ionic/cli-utils
Version:
Ionic CLI Utils
51 lines (50 loc) • 1.34 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const tslib_1 = require("tslib");
const Debug = require("debug");
class Ailment {
constructor({ client, config, log, project, shell, session }) {
this.projects = undefined;
this.implicit = true;
this.client = client;
this.config = config;
this.log = log;
this.project = project;
this.shell = shell;
this.session = session;
}
get debug() {
if (!this._debug) {
this._debug = Debug(`ionic:cli-utils:lib:doctor:ailments:${this.id}`);
}
return this._debug;
}
getLocalPackageJson(pkgName) {
return tslib_1.__awaiter(this, void 0, void 0, function* () {
try {
return yield this.project.requirePackageJson(pkgName);
}
catch (e) {
if (e.fatal) {
throw e;
}
}
});
}
}
exports.Ailment = Ailment;
class AilmentRegistry {
constructor() {
this._ailments = [];
}
register(ailment) {
this._ailments.push(ailment);
}
get ailments() {
return this._ailments;
}
get(id) {
return this._ailments.find(a => a.id === id);
}
}
exports.AilmentRegistry = AilmentRegistry;