Skip to content

Commit

Permalink
feat(nx): update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
vsavkin committed Feb 26, 2019
1 parent 7f2c16f commit eabcb96
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docs/api-schematics/ng-new.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ng-new

Create an empty workspace
Create a workspace

## Usage

Expand All @@ -20,3 +20,4 @@ ng generate ng-new ...
| `skipInstall` | | Skip installing dependency packages. | boolean | `false` |
| `skipGit` | g | Skip initializing a git repository. | boolean | `false` |
| `commit` | | Initial repository commit information. | boolean | `true` |
| `preset` | | What to create in the new workspace | string | `empty` |
22 changes: 22 additions & 0 deletions docs/api-schematics/workspace.md
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` |

0 comments on commit eabcb96

Please sign in to comment.