The simpleName option is no longer useful as we've moved to using options "as provided" without transformation. Users should provide the exact name, directory, and import path they want to use. ## Changes - Add x-deprecated to schema.json marking for removal in Nx 22 - Add runtime warning when simpleName is used 🤖 Generated with [Claude Code](https://claude.ai/code) <!-- 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 Users are confused with `--simpleName` with using `--name` AND `--directory` ## Expected Behavior We should tell users that only `--name` should be used. ## Related Issue(s) <!-- Please link the issue being fixed so it gets closed when this is merged. --> Fixes #29508 --------- Co-authored-by: Claude <noreply@anthropic.com>
146 lines
4.3 KiB
JSON
146 lines
4.3 KiB
JSON
{
|
|
"$schema": "https://json-schema.org/schema",
|
|
"$id": "NxNestLibraryGenerator",
|
|
"title": "Create a NestJS Library for Nx",
|
|
"description": "Create a NestJS Library for Nx.",
|
|
"cli": "nx",
|
|
"type": "object",
|
|
"examples": [
|
|
{
|
|
"command": "nx g lib mylib --directory=myapp",
|
|
"description": "Generate libs/myapp/mylib"
|
|
}
|
|
],
|
|
"properties": {
|
|
"directory": {
|
|
"description": "A directory where the library is placed.",
|
|
"type": "string",
|
|
"alias": "dir",
|
|
"$default": {
|
|
"$source": "argv",
|
|
"index": 0
|
|
},
|
|
"x-prompt": "Which directory do you want to create the library in?"
|
|
},
|
|
"name": {
|
|
"description": "Library name.",
|
|
"pattern": "(?:^@[a-zA-Z0-9-*~][a-zA-Z0-9-*._~]*\\/[a-zA-Z0-9-~][a-zA-Z0-9-._~]*|^[a-zA-Z][^:]*)$",
|
|
"type": "string"
|
|
},
|
|
"linter": {
|
|
"description": "The tool to use for running lint checks.",
|
|
"type": "string",
|
|
"enum": ["eslint", "none"],
|
|
"default": "none",
|
|
"x-prompt": "Which linter would you like to use?",
|
|
"x-priority": "important"
|
|
},
|
|
"unitTestRunner": {
|
|
"description": "Test runner to use for unit tests.",
|
|
"type": "string",
|
|
"enum": ["jest", "none"],
|
|
"default": "none",
|
|
"x-prompt": "Which unit test runner would you like to use?",
|
|
"x-priority": "important"
|
|
},
|
|
"tags": {
|
|
"description": "Add tags to the library (used for linting).",
|
|
"type": "string",
|
|
"alias": "t"
|
|
},
|
|
"skipFormat": {
|
|
"description": "Skip formatting files.",
|
|
"type": "boolean",
|
|
"default": false,
|
|
"x-priority": "internal"
|
|
},
|
|
"skipTsConfig": {
|
|
"description": "Do not update tsconfig.base.json for development experience.",
|
|
"type": "boolean",
|
|
"default": false,
|
|
"x-priority": "internal"
|
|
},
|
|
"publishable": {
|
|
"description": "Create a publishable library.",
|
|
"type": "boolean",
|
|
"x-priority": "important"
|
|
},
|
|
"buildable": {
|
|
"description": "Generate a buildable library.",
|
|
"type": "boolean",
|
|
"default": false,
|
|
"x-priority": "important"
|
|
},
|
|
"importPath": {
|
|
"description": "The library name used to import it, like @myorg/my-awesome-lib. Must be a valid npm name.",
|
|
"type": "string"
|
|
},
|
|
"global": {
|
|
"description": "Add the Global decorator to the generated module.",
|
|
"type": "boolean",
|
|
"default": false
|
|
},
|
|
"service": {
|
|
"description": "Include a service with the library.",
|
|
"type": "boolean",
|
|
"default": false
|
|
},
|
|
"controller": {
|
|
"description": "Include a controller with the library.",
|
|
"type": "boolean",
|
|
"default": false
|
|
},
|
|
"testEnvironment": {
|
|
"description": "The test environment for jest, for node applications this should stay as node unless doing DOM testing.",
|
|
"type": "string",
|
|
"enum": ["jsdom", "node"],
|
|
"default": "node"
|
|
},
|
|
"target": {
|
|
"description": "The ES target, Nest suggest using es2021 or higher.",
|
|
"type": "string",
|
|
"default": "es2021",
|
|
"enum": [
|
|
"es5",
|
|
"es6",
|
|
"esnext",
|
|
"es2015",
|
|
"es2016",
|
|
"es2017",
|
|
"es2018",
|
|
"es2019",
|
|
"es2020",
|
|
"es2021"
|
|
]
|
|
},
|
|
"strict": {
|
|
"description": "Whether to enable tsconfig strict mode or not.",
|
|
"type": "boolean",
|
|
"default": true
|
|
},
|
|
"setParserOptionsProject": {
|
|
"type": "boolean",
|
|
"description": "Whether or not to configure the ESLint \"parserOptions.project\" option. We do not do this by default for lint performance reasons.",
|
|
"default": false
|
|
},
|
|
"skipPackageJson": {
|
|
"description": "Do not add dependencies to `package.json`.",
|
|
"type": "boolean",
|
|
"default": false,
|
|
"x-priority": "internal"
|
|
},
|
|
"simpleName": {
|
|
"description": "Don't include the directory in the name of the module of the library.",
|
|
"type": "boolean",
|
|
"default": false,
|
|
"x-deprecated": "Use the --name option to provide the exact name instead. This option will be removed in Nx 22."
|
|
},
|
|
"useProjectJson": {
|
|
"type": "boolean",
|
|
"description": "Use a `project.json` configuration file instead of inlining the Nx configuration in the `package.json` file."
|
|
}
|
|
},
|
|
"additionalProperties": false,
|
|
"required": ["directory"]
|
|
}
|