lean-laas-cli
Version:
Command-Line Interface for Lean LaaS
13 lines • 437 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const pkgVersion = require('../../package.json').version;
exports.command = (program) => {
program
.command('hello [name]')
.description('Hello, how are you?')
.action(action);
};
const action = (name) => {
console.log(`Hello, ${name}! (app v${pkgVersion} with Node.js ${process.version})`);
};
//# sourceMappingURL=hello.js.map