defaultCollection
In the nx.json
you can set a defaultCollection
property like this:
{
"cli": {
"defaultCollection": "@nx/next"
}
}
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