defaultCollection
ExperimentalConfiguring defaultCollection
will no longer have any effect in Nx 17+
In the nx.json
you can set a defaultCollection
property like this:
1{
2 "cli": {
3 "defaultCollection": "@nx/next"
4 }
5}
6
This would cause the following command
❯
nx g library my-lib
To create a @nx/next:library
library instead of some other generator with the name library
.
This property is no longer needed because the Nx cli automatically will prompt you to choose between the available options if there is any ambiguity. The output looks like this:
❯
> nx g lib my-lib
❯
? Which generator would you like to use? …
❯
@nx/react-native:library
❯
@nx/angular:library
❯
@nx/expo:library
❯
@nx/nest:library
❯
@nx/node:library
❯
@nestjs/schematics:library
❯
@schematics/angular:library
❯
@nx/js:library
❯
@nx/next:library
❯
@nx/react:library
❯
None of the above