@zowe/imperative
Version:
framework for building configurable CLIs
37 lines • 1.22 kB
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.
*
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.ReportEnvDefinition = void 0;
const path_1 = require("path");
/**
* Definition for the 'config report-env' command.
* @type {ICommandDefinition}
*/
exports.ReportEnvDefinition = {
name: "report-env",
aliases: ["re"],
type: "command",
handler: (0, path_1.join)(__dirname, "Report-env.handler"),
summary: "Report the state of your working environment",
description: "Reports key items from your environment and identifies problem conditions.",
examples: [
{
description: "Report information and issues about your working environment",
options: ""
},
{
description: "Save the report about your working environment to a file",
options: "> report.log"
}
]
};
//# sourceMappingURL=Report-env.definition.js.map
;