From 84b21ed449ae4bc29fa1f11fe06b51462dfcee13 Mon Sep 17 00:00:00 2001 From: AlvesJorge <60895482+AlvesJorge@users.noreply.github.com> Date: Fri, 29 Dec 2023 23:15:55 +0100 Subject: [PATCH 1/4] Update usages.md --- content/cli/usages.md | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/content/cli/usages.md b/content/cli/usages.md index d46934444d..9179e21f90 100644 --- a/content/cli/usages.md +++ b/content/cli/usages.md @@ -54,25 +54,25 @@ $ nest g [options] ##### Schematics -| Name | Alias | Description | -| ------------- | ----- | ------------------------------------------------------------------------------------------------------------ | -| `app` | | Generate a new application within a monorepo (converting to monorepo if it's a standard structure). | -| `library` | `lib` | Generate a new library within a monorepo (converting to monorepo if it's a standard structure). | -| `class` | `cl` | Generate a new class. | -| `controller` | `co` | Generate a controller declaration. | -| `decorator` | `d` | Generate a custom decorator. | -| `filter` | `f` | Generate a filter declaration. | -| `gateway` | `ga` | Generate a gateway declaration. | -| `guard` | `gu` | Generate a guard declaration. | -| `interface` | `itf` | Generate an interface. | -| `interceptor` | `itc` | Generate an interceptor declaration. | -| `middleware` | `mi` | Generate a middleware declaration. | -| `module` | `mo` | Generate a module declaration. | -| `pipe` | `pi` | Generate a pipe declaration. | -| `provider` | `pr` | Generate a provider declaration. | -| `resolver` | `r` | Generate a resolver declaration. | -| `resource` | `res` | Generate a new CRUD resource. See the [CRUD (resource) generator](/recipes/crud-generator) for more details. | -| `service` | `s` | Generate a service declaration. | +| Name | Alias | Description | +| ------------- | ----- | ----------------------------------------------------------------------------------------------------------------------| +| `app` | | Generate a new application within a monorepo (converting to monorepo if it's a standard structure). | +| `library` | `lib` | Generate a new library within a monorepo (converting to monorepo if it's a standard structure). | +| `class` | `cl` | Generate a new class. | +| `controller` | `co` | Generate a controller declaration. | +| `decorator` | `d` | Generate a custom decorator. | +| `filter` | `f` | Generate a filter declaration. | +| `gateway` | `ga` | Generate a gateway declaration. | +| `guard` | `gu` | Generate a guard declaration. | +| `interface` | `itf` | Generate an interface. | +| `interceptor` | `itc` | Generate an interceptor declaration. | +| `middleware` | `mi` | Generate a middleware declaration. | +| `module` | `mo` | Generate a module declaration. | +| `pipe` | `pi` | Generate a pipe declaration. | +| `provider` | `pr` | Generate a provider declaration. | +| `resolver` | `r` | Generate a resolver declaration. | +| `resource` | `res` | Generate a new CRUD resource. See the [CRUD (resource) generator](/recipes/crud-generator) for more details. (TS Only)| +| `service` | `s` | Generate a service declaration. | ##### Options From 61b4ad78c8aed1cab64961c950e305db3bad6823 Mon Sep 17 00:00:00 2001 From: AlvesJorge <60895482+AlvesJorge@users.noreply.github.com> Date: Fri, 29 Dec 2023 23:17:36 +0100 Subject: [PATCH 2/4] Update crud-generator.md --- content/recipes/crud-generator.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/recipes/crud-generator.md b/content/recipes/crud-generator.md index 1888e58e3d..74d1365279 100644 --- a/content/recipes/crud-generator.md +++ b/content/recipes/crud-generator.md @@ -1,4 +1,4 @@ -### CRUD generator +### CRUD generator (Typescript Only) 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. From 86afab63d61932b896b0e4f6126a52b505a25a2e Mon Sep 17 00:00:00 2001 From: Kamil Mysliwiec Date: Sat, 30 Dec 2023 13:15:28 +0100 Subject: [PATCH 3/4] Update content/cli/usages.md --- content/cli/usages.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/cli/usages.md b/content/cli/usages.md index 9179e21f90..439a8d0b11 100644 --- a/content/cli/usages.md +++ b/content/cli/usages.md @@ -71,7 +71,7 @@ $ nest g [options] | `pipe` | `pi` | Generate a pipe declaration. | | `provider` | `pr` | Generate a provider declaration. | | `resolver` | `r` | Generate a resolver declaration. | -| `resource` | `res` | Generate a new CRUD resource. See the [CRUD (resource) generator](/recipes/crud-generator) for more details. (TS Only)| +| `resource` | `res` | Generate a new CRUD resource. See the [CRUD (resource) generator](/recipes/crud-generator) for more details. (TS only)| | `service` | `s` | Generate a service declaration. | ##### Options From 1f5406404f6ae96e81a5a473af680ceae8485fca Mon Sep 17 00:00:00 2001 From: Kamil Mysliwiec Date: Sat, 30 Dec 2023 13:15:42 +0100 Subject: [PATCH 4/4] Update content/recipes/crud-generator.md --- content/recipes/crud-generator.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/recipes/crud-generator.md b/content/recipes/crud-generator.md index 74d1365279..7125122bac 100644 --- a/content/recipes/crud-generator.md +++ b/content/recipes/crud-generator.md @@ -1,4 +1,4 @@ -### CRUD generator (Typescript Only) +### CRUD generator (TypeScript only) 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.