<!-- 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: Jack Hsu <jack.hsu@gmail.com>
59 lines
2.2 KiB
JSON
59 lines
2.2 KiB
JSON
{
|
|
"name": "nx/js",
|
|
"version": "0.1",
|
|
"generators": {
|
|
"library": {
|
|
"factory": "./src/generators/library/library#libraryGeneratorInternal",
|
|
"schema": "./src/generators/library/schema.json",
|
|
"aliases": ["lib"],
|
|
"x-type": "library",
|
|
"description": "Create a library"
|
|
},
|
|
"init": {
|
|
"factory": "./src/generators/init/init#initGeneratorInternal",
|
|
"schema": "./src/generators/init/schema.json",
|
|
"aliases": ["lib"],
|
|
"x-type": "init",
|
|
"description": "Initialize a TS/JS workspace.",
|
|
"hidden": true
|
|
},
|
|
"convert-to-swc": {
|
|
"factory": "./src/generators/convert-to-swc/convert-to-swc#convertToSwcGenerator",
|
|
"schema": "./src/generators/convert-to-swc/schema.json",
|
|
"aliases": ["swc"],
|
|
"x-type": "library",
|
|
"description": "Convert a TypeScript library to compile with SWC."
|
|
},
|
|
"release-version": {
|
|
"factory": "./src/generators/release-version/release-version#releaseVersionGenerator",
|
|
"schema": "./src/generators/release-version/schema.json",
|
|
"description": "DO NOT INVOKE DIRECTLY WITH `nx generate`. Use `nx release version` instead.",
|
|
"hidden": true
|
|
},
|
|
"setup-verdaccio": {
|
|
"factory": "./src/generators/setup-verdaccio/generator#setupVerdaccio",
|
|
"schema": "./src/generators/setup-verdaccio/schema.json",
|
|
"alias": ["verdaccio"],
|
|
"description": "Setup Verdaccio for local package management."
|
|
},
|
|
"setup-build": {
|
|
"factory": "./src/generators/setup-build/generator",
|
|
"schema": "./src/generators/setup-build/schema.json",
|
|
"alias": ["build"],
|
|
"description": "setup-build generator"
|
|
},
|
|
"typescript-sync": {
|
|
"factory": "./src/generators/typescript-sync/typescript-sync",
|
|
"schema": "./src/generators/typescript-sync/schema.json",
|
|
"description": "Synchronize TypeScript project references based on the project graph",
|
|
"alias": ["sync"],
|
|
"hidden": true
|
|
},
|
|
"setup-prettier": {
|
|
"factory": "./src/generators/setup-prettier/generator",
|
|
"schema": "./src/generators/setup-prettier/schema.json",
|
|
"description": "Setup Prettier as the formatting tool."
|
|
}
|
|
}
|
|
}
|