forked from asyncapi/generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcli.js
executable file
·55 lines (45 loc) · 1.65 KB
/
cli.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#!/usr/bin/env node
const path = require('path');
const program = require('commander');
const packageInfo = require('./package.json');
const mkdirp = require('mkdirp');
const generate = require('./lib/generator').generate;
const red = text => `\x1b[31m${text}\x1b[0m`;
const magenta = text => `\x1b[35m${text}\x1b[0m`;
const yellow = text => `\x1b[33m${text}\x1b[0m`;
const green = text => `\x1b[32m${text}\x1b[0m`;
let asyncapi;
let template;
const parseOutput = dir => path.resolve(dir);
const showErrorAndExit = err => {
console.error(red('Something went wrong:'));
console.error(red(err.stack || err.message));
process.exit(1);
};
program
.version(packageInfo.version)
.arguments('<asyncapi> <template>')
.action((asyncAPIPath, tmpl) => {
asyncapi = path.resolve(asyncAPIPath);
template = tmpl;
})
.option('-o, --output <outputDir>', 'directory where to put the generated files (defaults to current directory)', parseOutput, process.cwd())
.option('-t, --templates <templateDir>', 'directory where templates are located (defaults to internal templates directory)')
.parse(process.argv);
if (!asyncapi) {
console.error(red('> Path to AsyncAPI file not provided.'));
program.help(); // This exits the process
}
mkdirp(program.output, err => {
if (err) return showErrorAndExit(err);
generate({
asyncapi,
target_dir: program.output,
template,
templates: program.templates,
}).then(() => {
console.log(green('Done! ✨'));
console.log(yellow('Check out your shiny new API documentation at ') + magenta(program.output) + yellow('.'));
}).catch(showErrorAndExit);
});
process.on('unhandledRejection', showErrorAndExit);