@rushstack/lockfile-explorer
Version:
Rush Lockfile Explorer: The UI for solving version conflicts quickly in a large monorepo
19 lines • 1.02 kB
JavaScript
;
// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.
// See LICENSE in the project root for license information.
Object.defineProperty(exports, "__esModule", { value: true });
exports.LfxDependencyKind = exports.LfxGraphEntryKind = void 0;
var LfxGraphEntryKind;
(function (LfxGraphEntryKind) {
LfxGraphEntryKind[LfxGraphEntryKind["Project"] = 1] = "Project";
LfxGraphEntryKind[LfxGraphEntryKind["Package"] = 2] = "Package";
LfxGraphEntryKind[LfxGraphEntryKind["SideBySide"] = 3] = "SideBySide";
LfxGraphEntryKind[LfxGraphEntryKind["Doppelganger"] = 4] = "Doppelganger";
})(LfxGraphEntryKind || (exports.LfxGraphEntryKind = LfxGraphEntryKind = {}));
var LfxDependencyKind;
(function (LfxDependencyKind) {
LfxDependencyKind["Regular"] = "regular";
LfxDependencyKind["Dev"] = "dev";
LfxDependencyKind["Peer"] = "peer";
})(LfxDependencyKind || (exports.LfxDependencyKind = LfxDependencyKind = {}));
//# sourceMappingURL=IJsonLfxGraph.js.map