-
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
fix(core): replace @nrwl with @nx in nx core packages #16344
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎ 1 Ignored Deployment
|
@@ -369,8 +369,8 @@ class TaskHasher { | |||
// if it's "run commands" we skip traversing since we have no info what this command depends on | |||
// for everything else we take the hash of the @nrwl package dependency tree | |||
if ( | |||
target.executor.startsWith(`@nrwl/`) && | |||
target.executor !== `@nrwl/workspace:run-commands` |
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 always seemed wierd, do we no longer need it? I'd love a breakdown of what it was doing.
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.
Sure we can discuss this offline.
(pluginName.startsWith('@nx/') || pluginName.startsWith('@nrwl/') | ||
? chalk.dim(` (v${nxVersion})`) | ||
: ''), |
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.
Unrelated to the actual change - but does this report a bad version for labs packages like @nrwl/deno?
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.
Yes, I think it does.
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 agree - it also just flat out doesn't report a version for things like nx-dotnet. Here's a fix: #16353
It does unfortunately conflict with this PR - feel free to hold on merging it until after this one and I can fix it up.
1ab8933
to
8debd07
Compare
8debd07
to
0269a10
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
There are still some usages of
@nrwl/
innx
,@nx/devkit
,create-nx-workspace
, andcreate-nx-plugin
.Expected Behavior
The usages of
@nrwl/ have been modified to support
@nxin
nx,
@nx/devkit,
create-nx-workspace, and
create-nx-plugin`.Related Issue(s)
Fixes #