I have created sample nx-monorepo for angular using v12. The original application is a polyrepo with angular cli using old version of lerna, so I am trying to upgrade it to 16 and want to go forward with nx
.
Here is the structure.
Root
|-- apps
| |-- app1
| |-- app2
|-- libs
| |-- lib1
| | --package.json
| |-- lib2
| | --package.json
|--other-angular-and-nx-config-files
|--nx.json
|--package.json
Now when I run the nx migrate 13 command, it updated the root package.json
file to version 13 but the package.json
of angular libraries in the libs folder version still stays at 12. I have tried many resourses but did not find any useful documentation, not even in the nx
documentation.