-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbin.js
executable file
·33 lines (30 loc) · 954 Bytes
/
bin.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
#! /usr/bin/env node
const { Command } = require("commander");
const fs = require("fs");
const path = require("path");
const { copyDir } = require("./utils/copydir");
const { logger } = require("./utils/logger");
const template = {
main: "main-template",
};
const main = () => {
const program = new Command()
.name("express-typescript")
.description("Create express typescript template")
.argument("<target>", "Target Directory")
.action(async (target, options) => {
try {
const t = template["main"];
copyDir(path.join(__dirname, "template", t), target);
logger.success(`\nSuccess, next step:\n`);
logger.info(`cd ${target} && npm install`);
process.exit(0);
} catch (error) {
logger.error(error);
process.exit(1);
}
})
.version("1.2.0", "-v, --version", "display the version number");
program.parse();
};
main();