<!-- Please make sure you have read the submission guidelines before posting an PR --> <!-- https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md#-submitting-a-pr --> <!-- Please make sure that your commit message follows our format --> <!-- Example: `fix(nx): must begin with lowercase` --> <!-- If this is a particularly complex change or feature addition, you can request a dedicated Nx release for this pull request branch. Mention someone from the Nx team or the `@nrwl/nx-pipelines-reviewers` and they will confirm if the PR warrants its own release for testing purposes, and generate it for you if appropriate. --> ## Current Behavior <!-- This is the behavior we have today --> ## Expected Behavior <!-- This is the behavior we should expect with the changes in this PR --> ## Related Issue(s) <!-- Please link the issue being fixed so it gets closed when this is merged. --> Fixes # --------- Co-authored-by: Nicholas Cunningham <ndcunningham@gmail.com>
104 lines
4.1 KiB
JSON
104 lines
4.1 KiB
JSON
{
|
|
"name": "nx/nest",
|
|
"version": "0.1",
|
|
"extends": ["@nx/workspace"],
|
|
"generators": {
|
|
"application": {
|
|
"factory": "./src/generators/application/application#applicationGeneratorInternal",
|
|
"schema": "./src/generators/application/schema.json",
|
|
"aliases": ["app"],
|
|
"x-type": "application",
|
|
"description": "Create a NestJS application."
|
|
},
|
|
"init": {
|
|
"factory": "./src/generators/init/init",
|
|
"schema": "./src/generators/init/schema.json",
|
|
"description": "Initialize the `@nx/nest` plugin.",
|
|
"aliases": ["ng-add"],
|
|
"hidden": true
|
|
},
|
|
"library": {
|
|
"factory": "./src/generators/library/library#libraryGeneratorInternal",
|
|
"schema": "./src/generators/library/schema.json",
|
|
"aliases": ["lib"],
|
|
"x-type": "library",
|
|
"description": "Create a new NestJS library."
|
|
},
|
|
"class": {
|
|
"factory": "./src/generators/class/class",
|
|
"schema": "./src/generators/class/schema.json",
|
|
"description": "Run the `class` NestJS generator with Nx project support."
|
|
},
|
|
"controller": {
|
|
"factory": "./src/generators/controller/controller",
|
|
"schema": "./src/generators/controller/schema.json",
|
|
"description": "Run the `controller` NestJS generator with Nx project support."
|
|
},
|
|
"decorator": {
|
|
"factory": "./src/generators/decorator/decorator",
|
|
"schema": "./src/generators/decorator/schema.json",
|
|
"description": "Run the `decorator` NestJS generator with Nx project support."
|
|
},
|
|
"filter": {
|
|
"factory": "./src/generators/filter/filter",
|
|
"schema": "./src/generators/filter/schema.json",
|
|
"description": "Run the `filter` NestJS generator with Nx project support."
|
|
},
|
|
"gateway": {
|
|
"factory": "./src/generators/gateway/gateway",
|
|
"schema": "./src/generators/gateway/schema.json",
|
|
"description": "Run the `gateway` NestJS generator with Nx project support."
|
|
},
|
|
"guard": {
|
|
"factory": "./src/generators/guard/guard",
|
|
"schema": "./src/generators/guard/schema.json",
|
|
"description": "Run the `guard` NestJS generator with Nx project support."
|
|
},
|
|
"interceptor": {
|
|
"factory": "./src/generators/interceptor/interceptor",
|
|
"schema": "./src/generators/interceptor/schema.json",
|
|
"description": "Run the `interceptor` NestJS generator with Nx project support."
|
|
},
|
|
"interface": {
|
|
"factory": "./src/generators/interface/interface",
|
|
"schema": "./src/generators/interface/schema.json",
|
|
"description": "Run the `interface` NestJS generator with Nx project support."
|
|
},
|
|
"middleware": {
|
|
"factory": "./src/generators/middleware/middleware",
|
|
"schema": "./src/generators/middleware/schema.json",
|
|
"description": "Run the `middleware` NestJS generator with Nx project support."
|
|
},
|
|
"module": {
|
|
"factory": "./src/generators/module/module",
|
|
"schema": "./src/generators/module/schema.json",
|
|
"description": "Run the `module` NestJS generator with Nx project support."
|
|
},
|
|
"pipe": {
|
|
"factory": "./src/generators/pipe/pipe",
|
|
"schema": "./src/generators/pipe/schema.json",
|
|
"description": "Run the `pipe` NestJS generator with Nx project support."
|
|
},
|
|
"provider": {
|
|
"factory": "./src/generators/provider/provider",
|
|
"schema": "./src/generators/provider/schema.json",
|
|
"description": "Run the `provider` NestJS generator with Nx project support."
|
|
},
|
|
"resolver": {
|
|
"factory": "./src/generators/resolver/resolver",
|
|
"schema": "./src/generators/resolver/schema.json",
|
|
"description": "Run the `resolver` NestJS generator with Nx project support."
|
|
},
|
|
"resource": {
|
|
"factory": "./src/generators/resource/resource",
|
|
"schema": "./src/generators/resource/schema.json",
|
|
"description": "Run the `resource` NestJS generator with Nx project support."
|
|
},
|
|
"service": {
|
|
"factory": "./src/generators/service/service",
|
|
"schema": "./src/generators/service/schema.json",
|
|
"description": "Run the `service` NestJS generator with Nx project support."
|
|
}
|
|
}
|
|
}
|