@axway/axway-cli-pm
Version:
Package manager for Axway products
31 lines (24 loc) • 673 B
JavaScript
import { fileURLToPath } from 'url';
import { dirname } from 'path';
const __filename = fileURLToPath(import.meta.url);
const __dirname = dirname(__filename);
var index = {
commands: `${__dirname}/commands`,
desc: 'Package manager for Axway products',
help: {
header() {
return `${this.desc}.`;
},
footer({ style }) {
return `${style.heading('Examples:')}
List all available packages:
${style.highlight('axway pm search')}
View package details:
${style.highlight('axway pm view <package>')}
Install a package:
${style.highlight('axway pm install <package>')}`;
}
}
};
export { index as default };
//# sourceMappingURL=index.js.map