@turbo/gen 0.0.1-alpha.4 → 0.0.1-alpha.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/dist/cli.js +132 -132
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
> This package is currently in **beta**. Please report any issues you encounter, and give us feedback about your experience using it!
|
|
4
4
|
|
|
5
|
-
Easily extend your Turborepo with new apps, and packages. Create new empty workspaces, copy existing workspaces, add workspaces from remote sources (just like `create-turbo`!)
|
|
5
|
+
Easily extend your Turborepo with new apps, and packages. Create new empty workspaces, copy existing workspaces, add workspaces from remote sources (just like `create-turbo`!) or run custom generators defined using [Plop](https://plopjs.com/) configurations.
|
|
6
6
|
|
|
7
7
|
## Usage
|
|
8
8
|
|
|
@@ -60,7 +60,7 @@ Extend your Turborepo with custom generators defined using [Plop](https://plopjs
|
|
|
60
60
|
`@turbo/gen` will search the root of your monorepo, and every workspace for generators defined at:
|
|
61
61
|
|
|
62
62
|
```bash
|
|
63
|
-
generators/config.js
|
|
63
|
+
turbo/generators/config.js
|
|
64
64
|
```
|
|
65
65
|
|
|
66
66
|
**NOTE**: By default, generators are run from the _root_ of the _workspace_ where they are defined.
|