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
Describe the bug
running the generator for a solid library results in a path being created with a redundant "libs" directory
To Reproduce
npx create-nx-workspace --preset=apps solid-test
cd solid-test
npm i @nxext/solid
nx g @nxext/solid:application apps/app-web
nx g @nxext/solid:lib libs/lib-app-web
cat tsconfig.base.json
See double libs. This breaks the path imports when you try to use components this exposes later.
Additional context
Originally when I encountered this was in a pnpm project and I was passing --directory nx g @nxext/solid:library lib-app-web --directory libs/lib-app-web which had the same result. I recreated it in npm and using the shorthand syntax
This may be the same issue as #1034 but given it's a different generator I wasn't sure.
Describe the bug
running the generator for a solid library results in a path being created with a redundant "libs" directory
To Reproduce
npx create-nx-workspace --preset=apps solid-test cd solid-test npm i @nxext/solid nx g @nxext/solid:application apps/app-web nx g @nxext/solid:lib libs/lib-app-web cat tsconfig.base.json
See double libs. This breaks the path imports when you try to use components this exposes later.
Expected behavior
Single libs
Additional context
Originally when I encountered this was in a pnpm project and I was passing --directory
nx g @nxext/solid:library lib-app-web --directory libs/lib-app-web
which had the same result. I recreated it in npm and using the shorthand syntaxThis may be the same issue as #1034 but given it's a different generator I wasn't sure.
The text was updated successfully, but these errors were encountered: