UNPKG

@zowe/imperative

Version:
45 lines 1.4 kB
"use strict"; /* * 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.firststepsDefinition = void 0; const path_1 = require("path"); const pluginDescription = "The name of the installed plug-in to show first steps for.\n\n" + "If the plug-in argument is omitted, no action is taken."; /** * Definition of the firststeps command. * @type {ICommandDefinition} */ exports.firststepsDefinition = { name: "show-first-steps", type: "command", aliases: ["fs"], summary: "Show first steps for a plug-in", description: "Show first steps required to set up plug-in for use.", handler: (0, path_1.join)(__dirname, "showfirststeps.handler"), positionals: [ { name: "plugin", type: "string", description: pluginDescription, required: false } ], // options: [ // ], examples: [ { description: `Show first steps for a plug-in called 'my-plugin'`, options: "my-plugin" } ] }; //# sourceMappingURL=showfirststeps.definition.js.map