-
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(angular): remove decorate-angular-cli #14226
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
07918bb
to
2a45d4e
Compare
@@ -129,12 +129,11 @@ describe('convert Angular CLI workspace to an Nx workspace', () => { | |||
const updatedPackageJson = readJson('package.json'); | |||
expect(updatedPackageJson.description).toEqual('some description'); | |||
expect(updatedPackageJson.scripts).toEqual({ | |||
ng: 'nx', |
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.
Should we instead change this to something like 'nx': 'nx'
or simply remove it?
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.
Yeah I'm not too certain!
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 is from what @angular/cli
generates?
I think we should leave it alone.
@@ -129,12 +129,11 @@ describe('convert Angular CLI workspace to an Nx workspace', () => { | |||
const updatedPackageJson = readJson('package.json'); | |||
expect(updatedPackageJson.description).toEqual('some description'); | |||
expect(updatedPackageJson.scripts).toEqual({ | |||
ng: 'nx', |
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 is from what @angular/cli
generates?
I think we should leave it alone.
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
We currently decorate the angular cli so that all
ng
commands get piped tonx
.Expected Behavior
We want Nx to be seen and used as a standalone CLI tool, therefore remove the linking between angular cli + nx