@rushstack/lockfile-explorer
Version:
Rush Lockfile Explorer: The UI for solving version conflicts quickly in a large monorepo
8 lines • 574 B
JavaScript
// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.
// See LICENSE in the project root for license information.
import { ConsoleTerminalProvider, Terminal } from '@rushstack/terminal/lib/index';
import { LintCommandLineParser } from './cli/lint/LintCommandLineParser';
const terminal = new Terminal(new ConsoleTerminalProvider());
const parser = new LintCommandLineParser(terminal);
parser.executeAsync().catch(console.error); // CommandLineParser.executeAsync() should never reject the promise
//# sourceMappingURL=start-lint.js.map