I need help migrating my Angular project from using "@angular-builders/custom-webpack" build targets to transitioning to an integrated NX monorepo. When I run the command npx nx@latest init --integrated
, I receive the following warning:
- Unsupported builders:
- Errors:
- The "build" target is currently set up with the builder "@angular-builders/custom-webpack:browser", which cannot be automatically migrated and will be skipped.
- The "serve" target is currently set up with the builder "@angular-builders/custom-webpack:dev-server", which cannot be automatically migrated and will be skipped.
- The "test" target is currently set up with the builder "@angular-builders/custom-webpack:karma", which cannot be automatically migrated and will be skipped.
- You have two options: manually migrate the target configuration and any associated files, or revert the migration and change the builder to one of the supported options listed by the automated migration tool (such as "@angular-devkit/build-angular:application", "@angular-devkit/build-angular:browser", etc.), then rerun the migration process.
Can someone advise me on how to proceed in this situation?