-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(nx-plugin): reuse utilities from create-nx-workspace for create-nx-plugin #15743
feat(nx-plugin): reuse utilities from create-nx-workspace for create-nx-plugin #15743
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
6c0bdcb
to
559370b
Compare
559370b
to
b165e0d
Compare
b165e0d
to
60cea8c
Compare
60cea8c
to
df23b5b
Compare
df23b5b
to
8600a0b
Compare
8600a0b
to
dd0db75
Compare
@@ -144,16 +146,16 @@ function normalizeOptions( | |||
return { | |||
...base, | |||
executorsJson: base.executorsJson | |||
? `${sourceProject.data.root}/${base.executorsJson}` | |||
? resolve(`${sourceProject.data.root}/${base.executorsJson}`) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This doesn't seem to do much?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This would change the paths to be absolute. Was there a bug before this change?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'll double check if this is still needed - there was an issue when generating an Nx plugin at the root level that the lint rule was comparing ./generators.json
with generators.json
packages/nx-plugin/src/generators/preset/files/src/index.ts__template__
Outdated
Show resolved
Hide resolved
dd0db75
to
b973cdf
Compare
b973cdf
to
6f3d6ef
Compare
6f3d6ef
to
1ccb53c
Compare
1ccb53c
to
5dfaf14
Compare
5dfaf14
to
c96b264
Compare
c96b264
to
01ddbea
Compare
01ddbea
to
7ecd408
Compare
12999db
to
653a536
Compare
653a536
to
0f5c066
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I left one comment regarding e2e test
0f5c066
to
1132637
Compare
1132637
to
57d9cd7
Compare
57d9cd7
to
78eb03f
Compare
78eb03f
to
c8bddc3
Compare
This pull request has already been merged/closed. If you experience issues related to these changes, please open a new issue referencing this pull request. |
Current Behavior
create-nx-plugin creates a monorepo containing one plugin
Expected Behavior
create-nx-plugin creates a repository containing a plugin as the base project
Related Issue(s)
Fixes #