forked from nrwl/nx
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
24 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# workspace [hidden] | ||
|
||
Create an empty workspace | ||
|
||
## Usage | ||
|
||
```bash | ||
ng generate workspace ... | ||
|
||
``` | ||
|
||
### Options | ||
|
||
| Name | Alias | Description | Type | Default value | | ||
| ------------- | ----- | ---------------------------------------------- | ------- | ------------- | | ||
| `name` | | The name of the workspace. | string | `undefined` | | ||
| `style` | | The file extension to be used for style files. | string | `css` | | ||
| `directory` | | The directory name to create the workspace in. | string | `` | | ||
| `npmScope` | | Npm scope for importing libs. | string | `undefined` | | ||
| `skipInstall` | | Skip installing dependency packages. | boolean | `false` | | ||
| `skipGit` | g | Skip initializing a git repository. | boolean | `false` | | ||
| `commit` | | Initial repository commit information. | boolean | `true` | |