-
Notifications
You must be signed in to change notification settings - Fork 67
fix(bazel/rules_angular): update worker to use user-configured TypeScript instead of npm version #3597
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(bazel/rules_angular): update worker to use user-configured TypeScript instead of npm version #3597
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -52,7 +52,7 @@ ts_project( | |
| # NOTE: The Angular compiler in this target is not affecting any compilation | ||
| # output, but it's still necessary for some foundational utils like virtual FS. | ||
| "//:node_modules/@angular/compiler-cli", # compiler from npm. | ||
| "//:node_modules/typescript", # typescript from npm. | ||
| ":node_modules/typescript", # user-configured typescript. Ensure that the users TypeScript version is always used for the compilation. | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think this was previously using the version from Is that not a concern? Or I am misunderstanding?
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The problem with that approach is that any usage of In the case of having mismatches, I think we need to come up with a better solution or use an One other alternative would be not using the the
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Okay, If we are okay with moving the "error point" to the angular compiler-cli version like this, thats fine with me. |
||
| ], | ||
| ) | ||
|
|
||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.