@rushstack/heft
Version:
Build all your JavaScript projects the same way: A way that works.
18 lines • 796 B
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 });
const HeftCommandLineParser_1 = require("./cli/HeftCommandLineParser");
// Launching via lib/start.js bypasses the version selector. Use that for debugging Heft.
const parser = new HeftCommandLineParser_1.HeftCommandLineParser();
parser
.executeAsync()
.then(() => {
// This should be removed when the issue with aria not tearing down
process.exit(process.exitCode === undefined ? 0 : process.exitCode);
})
.catch((error) => {
parser.globalTerminal.writeErrorLine(error.toString());
process.exit(1);
});
//# sourceMappingURL=start.js.map