create-turbo 1.9.2 → 1.9.4-alpha.0
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +37 -0
- package/dist/cli.js +209 -119
- package/package.json +10 -7
package/README.md
CHANGED
@@ -11,3 +11,40 @@ npx create-turbo@latest
|
|
11
11
|
Then follow the prompts you see in your terminal.
|
12
12
|
|
13
13
|
For more information about Turborepo, [visit turbo.build/repo](https://turbo.build/repo) and follow us on Twitter ([@turborepo](https://twitter.com/turborepo))!
|
14
|
+
|
15
|
+
## Create
|
16
|
+
|
17
|
+
```sh
|
18
|
+
npx create-turbo@latest
|
19
|
+
```
|
20
|
+
|
21
|
+
## Add
|
22
|
+
|
23
|
+
> Extend your existing project with Turborepo generators
|
24
|
+
|
25
|
+
```sh
|
26
|
+
npx create-turbo@latest add
|
27
|
+
```
|
28
|
+
|
29
|
+
### Options
|
30
|
+
|
31
|
+
1. Empty
|
32
|
+
2. Copy
|
33
|
+
3. External
|
34
|
+
4. Custom
|
35
|
+
|
36
|
+
#### Empty
|
37
|
+
|
38
|
+
Create a new workspace in an interactive prompt.
|
39
|
+
|
40
|
+
#### Copy
|
41
|
+
|
42
|
+
Copy an existing workspace from your project into a new workspace.
|
43
|
+
|
44
|
+
#### External
|
45
|
+
|
46
|
+
Add an external workspace from a remote repository.
|
47
|
+
|
48
|
+
#### Custom
|
49
|
+
|
50
|
+
Run a custom plop.js generator.
|