-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcli.js
81 lines (71 loc) · 1.82 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
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
81
import arg from "arg";
import inquirer from "inquirer";
import { createProject } from "./main";
async function promptForMissingOptions(options) {
const defaultTemplate = "React";
const defaultPackage = "yarn";
if (options.skipPrompts) {
return {
...options,
template: options.template || defaultTemplate
};
}
const questions = [];
if (!options.template) {
questions.push({
type: "list",
name: "template",
message: "Create a project frontend boilerplate",
choices: ["React", "React-ts", "Vue", "Vue-ts", "Svelte", "Svelte-ts", "Preact", "Next", "Next-ts"],
default: defaultTemplate
});
}
if (!options.git) {
questions.push({
type: "confirm",
name: "git",
message: "Do you want a git to be initialised?",
default: false
});
}
questions.push({
type: "list",
name: "packageManager",
message: "Select a package manager",
choices: ["yarn", "npm"],
default: defaultPackage
});
const answers = await inquirer.prompt(questions);
return {
...options,
template: options.template || answers.template,
git: options.git || answers.git,
packageManager: options.packageManager || answers.packageManager
};
}
function parseArgumentsIntoOptions(rawArgs) {
const args = arg(
{
"--git": Boolean,
"--yes": Boolean,
"--install": Boolean,
"-g": "--git",
"-y": "--yes"
},
{
argv: rawArgs.slice(2)
}
);
return {
skipPrompts: args["--yes"] || false,
git: args["--git"] || false,
template: args._[0],
runInstall: args["--install"] || false,
packageManager: ""
};
}
export const cli = async args => {
const options = parseArgumentsIntoOptions(args);
const questions = await promptForMissingOptions(options);
await createProject(questions);
};