UNPKG

@rushstack/lockfile-explorer

Version:

Rush Lockfile Explorer: The UI for solving version conflicts quickly in a large monorepo

9 lines 650 B
// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license. // See LICENSE in the project root for license information. import { Path } from '@rushstack/node-core-library'; import lockfileExplorerPackageJson from '../../package.json'; export const { version: LFX_VERSION, name: LFX_PACKAGE_NAME } = lockfileExplorerPackageJson; let _lfxPackageRoot = Path.convertToSlashes(__dirname); _lfxPackageRoot = _lfxPackageRoot.slice(0, _lfxPackageRoot.lastIndexOf('/', _lfxPackageRoot.lastIndexOf('/') - 1)); export const LFX_PACKAGE_ROOT = Path.convertToPlatformDefault(_lfxPackageRoot); //# sourceMappingURL=constants.js.map