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
|
#!/usr/bin/env node
import chalk from "chalk";
import { Command } from "commander";
import notifyUpdate from "./utils/notifyUpdate";
import { turboGradient, error } from "./logger";
import { create } from "./commands";
import cliPkg from "../package.json";
const createTurboCli = new Command();
// create
createTurboCli
.name(chalk.bold(turboGradient("create-turbo")))
.description("Create a new Turborepo")
.usage(`${chalk.bold("<project-directory> <package-manager>")} [options]`)
.argument("[project-directory]")
.argument("[package-manager]")
.option(
"--skip-install",
"Do not run a package manager install after creating the project",
false
)
.option(
"--skip-transforms",
"Do not run any code transformation after creating the project",
false
)
.option(
"-e, --example [name]|[github-url]",
`
An example to bootstrap the app with. You can use an example name
from the official Turborepo repo or a GitHub URL. The URL can use
any branch and/or subdirectory
`
)
.option(
"-p, --example-path <path-to-example>",
`
In a rare case, your GitHub URL might contain a branch name with
a slash (e.g. bug/fix-1) and the path to the example (e.g. foo/bar).
In this case, you must specify the path to the example separately:
--example-path foo/bar
`
)
.version(cliPkg.version, "-v, --version", "output the current version")
.helpOption()
.action(create);
createTurboCli
.parseAsync()
.then(notifyUpdate)
.catch(async (reason) => {
console.log();
if (reason.command) {
error(`${chalk.bold(reason.command)} has failed.`);
} else {
error("Unexpected error. Please report it as a bug:");
console.log(reason);
}
console.log();
await notifyUpdate();
process.exit(1);
});
|