You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When migrating an existing project to an nx workspace I had to manually change many paths to node_module paths for the app that was created. It mostly involved adding ../../ to the existing paths since the old ./src directory now resided within ./apps/APP_NAME/src. I think fixing this issue should be as simple as doing a depth first search through each key of the created app within angular-cli.json. If that key begins with '[./]*node_modules/' then we should add the prefix '../../' to that key
The text was updated successfully, but these errors were encountered:
When migrating an existing project to an nx workspace I had to manually change many paths to node_module paths for the app that was created. It mostly involved adding ../../ to the existing paths since the old ./src directory now resided within ./apps/APP_NAME/src. I think fixing this issue should be as simple as doing a depth first search through each key of the created app within angular-cli.json. If that key begins with '[./]*node_modules/' then we should add the prefix '../../' to that key
The text was updated successfully, but these errors were encountered: