zowe-cli-cics-deploy-plugin
Version:
IBM CICS Bundle generation and deployment for Zowe CLI
24 lines • 960 B
JavaScript
;
/*
* This program and the accompanying materials are made available under the terms of the
* Eclipse Public License v2.0 which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-v20.html
*
* SPDX-License-Identifier: EPL-2.0
*
* Copyright Contributors to the Zowe Project.
* Copyright IBM Corp, 2019
*
*/
Object.defineProperty(exports, "__esModule", { value: true });
const imperative_1 = require("@zowe/imperative");
// init imperative & parse the CLI input.
imperative_1.Imperative.init().then(() => {
imperative_1.Imperative.api.imperativeLogger.info("Imperative Initialized the cics-deploy CLI!");
imperative_1.Imperative.parse();
imperative_1.Imperative.api.imperativeLogger.info("Parsed the input command!");
}).catch((error) => {
imperative_1.Imperative.console.error(`An error occured during imperative initalization:\n${error}`);
});
//# sourceMappingURL=main.js.map