-
Notifications
You must be signed in to change notification settings - Fork 2
/
setupCLI.js
80 lines (74 loc) · 1.64 KB
/
setupCLI.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
#!/usr/bin/env node
const commandLineArgs = require("command-line-args");
const commandLineUsage = require("command-line-usage");
const path = require("path");
const chalk = require("chalk");
const options = commandLineArgs([
{
name: "client",
alias: "c",
type: String,
defaultValue: "./node_modules/@prisma/client",
},
{
name: "help",
alias: "h",
type: Boolean,
defaultValue: false,
},
{
name: "version",
alias: "v",
type: Boolean,
defaultValue: false,
},
]);
const usage = commandLineUsage([
{
header: "Prisma Console",
content:
"REPL style console for Prisma ORM, heavily inspired from Rails console",
},
{
header: "Options",
optionList: [
{
name: "client",
alias: "c",
type: String,
typeLabel: "{underline path}",
description: "Path to the Prisma generated client",
defaultValue: path.join(__dirname, "./node_modules/@prisma/client"),
},
{
name: "help",
alias: "h",
type: Boolean,
description: "This help page",
},
{
name: "version",
alias: "v",
type: Boolean,
description: "Print the version",
},
],
},
]);
if (!options?.client) {
console.log(chalk.red("ERROR: Client cannot be empty."));
console.log(
chalk.red("Either provide a path to the client or omit the flag")
);
process.exit(1);
}
if (options?.help) {
console.log(usage);
process.exit(0);
}
if (options?.version) {
const packageFile = require("./package.json");
console.log(packageFile?.version);
process.exit(0);
}
module.exports = { options };