Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign uprefactor: let library to support “@” #17690
Conversation
When I execute `ng g application @apps/app1`, I get the following results: ``` text - @app/ - app1/ (newProjectRoot = "") ``` But !!! When I execute `ng g library @libs/lib1`, I got the result: ``` text - libs/ - lib1/ ``` This is too awkward !!! Please! Remove the `.replace(/^@/, '')` here, or add the `.replace(/^@/, '')` to the application! I think it's really weird now...
When I execute
ng g application @apps/app1, I get the following results:But !!! When I execute
ng g library @libs/lib1, I got the result:This is too awkward !!!
Please! Remove the
.replace(/^@/, '')here, or add the.replace(/^@/, '')to the application!I think it's really weird now...