@plexus-interop/cli
Version:
Plexus Interop CLI tools
30 lines • 1.8 kB
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
/**
* Copyright 2017-2020 Plexus Interop Deutsche Bank AG
* SPDX-License-Identifier: Apache-2.0
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
var program = require("commander");
var commands_1 = require("./commands");
var commands_2 = require("./commands/commands");
function main(args, version) {
program.on('--help', commands_2.printGeneralHelp);
commands_1.commands().forEach(function (c) { return c.register(program); });
program
.version(version)
.parse(args);
}
exports.main = main;
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7QUFBQTs7Ozs7Ozs7Ozs7Ozs7O0dBZUc7QUFDSCxtQ0FBcUM7QUFDckMsdUNBQXNDO0FBQ3RDLGdEQUF1RDtBQUV2RCxTQUFnQixJQUFJLENBQUMsSUFBYyxFQUFFLE9BQWU7SUFDaEQsT0FBTyxDQUFDLEVBQUUsQ0FBQyxRQUFRLEVBQUUsMkJBQWdCLENBQUMsQ0FBQztJQUN2QyxtQkFBUSxFQUFFLENBQUMsT0FBTyxDQUFDLFVBQUEsQ0FBQyxJQUFJLE9BQUEsQ0FBQyxDQUFDLFFBQVEsQ0FBQyxPQUFPLENBQUMsRUFBbkIsQ0FBbUIsQ0FBQyxDQUFDO0lBQzdDLE9BQU87U0FDRixPQUFPLENBQUMsT0FBTyxDQUFDO1NBQ2hCLEtBQUssQ0FBQyxJQUFJLENBQUMsQ0FBQztBQUNyQixDQUFDO0FBTkQsb0JBTUMifQ==
;