Skip to content

Commit 6ad915c

Browse files
Merge pull request #2931 from AlvesJorge/patch-1
Update Docs to mention that CRUD Generation is a TS Only feature
2 parents f6dbca6 + 1f54064 commit 6ad915c

File tree

2 files changed

+20
-20
lines changed

2 files changed

+20
-20
lines changed

content/cli/usages.md

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -54,25 +54,25 @@ $ nest g <schematic> <name> [options]
5454

5555
##### Schematics
5656

57-
| Name | Alias | Description |
58-
| ------------- | ----- | ------------------------------------------------------------------------------------------------------------ |
59-
| `app` | | Generate a new application within a monorepo (converting to monorepo if it's a standard structure). |
60-
| `library` | `lib` | Generate a new library within a monorepo (converting to monorepo if it's a standard structure). |
61-
| `class` | `cl` | Generate a new class. |
62-
| `controller` | `co` | Generate a controller declaration. |
63-
| `decorator` | `d` | Generate a custom decorator. |
64-
| `filter` | `f` | Generate a filter declaration. |
65-
| `gateway` | `ga` | Generate a gateway declaration. |
66-
| `guard` | `gu` | Generate a guard declaration. |
67-
| `interface` | `itf` | Generate an interface. |
68-
| `interceptor` | `itc` | Generate an interceptor declaration. |
69-
| `middleware` | `mi` | Generate a middleware declaration. |
70-
| `module` | `mo` | Generate a module declaration. |
71-
| `pipe` | `pi` | Generate a pipe declaration. |
72-
| `provider` | `pr` | Generate a provider declaration. |
73-
| `resolver` | `r` | Generate a resolver declaration. |
74-
| `resource` | `res` | Generate a new CRUD resource. See the [CRUD (resource) generator](/recipes/crud-generator) for more details. |
75-
| `service` | `s` | Generate a service declaration. |
57+
| Name | Alias | Description |
58+
| ------------- | ----- | ----------------------------------------------------------------------------------------------------------------------|
59+
| `app` | | Generate a new application within a monorepo (converting to monorepo if it's a standard structure). |
60+
| `library` | `lib` | Generate a new library within a monorepo (converting to monorepo if it's a standard structure). |
61+
| `class` | `cl` | Generate a new class. |
62+
| `controller` | `co` | Generate a controller declaration. |
63+
| `decorator` | `d` | Generate a custom decorator. |
64+
| `filter` | `f` | Generate a filter declaration. |
65+
| `gateway` | `ga` | Generate a gateway declaration. |
66+
| `guard` | `gu` | Generate a guard declaration. |
67+
| `interface` | `itf` | Generate an interface. |
68+
| `interceptor` | `itc` | Generate an interceptor declaration. |
69+
| `middleware` | `mi` | Generate a middleware declaration. |
70+
| `module` | `mo` | Generate a module declaration. |
71+
| `pipe` | `pi` | Generate a pipe declaration. |
72+
| `provider` | `pr` | Generate a provider declaration. |
73+
| `resolver` | `r` | Generate a resolver declaration. |
74+
| `resource` | `res` | Generate a new CRUD resource. See the [CRUD (resource) generator](/recipes/crud-generator) for more details. (TS only)|
75+
| `service` | `s` | Generate a service declaration. |
7676

7777
##### Options
7878

content/recipes/crud-generator.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
### CRUD generator
1+
### CRUD generator (TypeScript only)
22

33
Throughout the life span of a project, when we build new features, we often need to add new resources to our application. These resources typically require multiple, repetitive operations that we have to repeat each time we define a new resource.
44

0 commit comments

Comments
 (0)