zowe-cli-cics-deploy-plugin
Version:
IBM CICS Bundle generation and deployment for Zowe CLI
27 lines • 978 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 IBM Corp, 2019
*
*/
const GenerateBundle_definition_1 = require("./bundle/GenerateBundle.definition");
/**
* Imperative command to "generate" a Bundle, etc.
*
*/
const GenerateDefinition = {
name: "generate",
aliases: ["g", "gen"],
summary: "Transform the working directory into a CICS bundle",
description: "Generate a CICS bundle and associated metadata files in the current working directory. " +
"This allows the application in the current working directory to be deployed to CICS.",
type: "group",
children: [GenerateBundle_definition_1.GenerateBundleDefinition]
};
module.exports = GenerateDefinition;
//# sourceMappingURL=Generate.definition.js.map