UNPKG

609 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3const commander = require("commander");
4const pkg = require('../package.json');
5commander
6 .version(pkg.version)
7 .option('-e', '--environment [environment]', 'Environemnt')
8 .command('build [name]', 'Build a function')
9 .command('new [name]', 'Create a new function')
10 .command('init [name]', 'Create a new Altt project')
11 .command('deploy', 'Deploy a function. Run `altt deploy` for options.')
12 .command('clean', 'Clean, remove the build directory.')
13 .parse(process.argv);
14//# sourceMappingURL=altt.js.map
\No newline at end of file