-
Notifications
You must be signed in to change notification settings - Fork 6.8k
build: sync bazel angular version placeholder #12635
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
build: sync bazel angular version placeholder #12635
Conversation
* Updates the Bazel Angular version that will be replaced within the `npm_package` rule to the required Angular version that has been changed with angular#12089. * Removes an unused NPM script * Adds a small check to the Bazel workspace status script that ensures that both Angular versions are in sync.
@@ -11,6 +11,19 @@ function onError { | |||
echo "" | |||
} | |||
|
|||
# Function that throws an error if the Bazel Angular version does not match the | |||
# required Angular version in the project package.json file. | |||
function checkBazelAngularVersion { |
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.
@jelbourn Not sure if we want that. I just feel like it could happen more often that we are out-of-sync with the Bazel specific variables.
I can remove that part if desired. I'm sure if we switch to Bazel completely (at some point) , there will be only one placeholder anyway.
* Updates the Bazel Angular version that will be replaced within the `npm_package` rule to the required Angular version that has been changed with angular#12089. * Removes an unused NPM script * Adds a small check to the Bazel workspace status script that ensures that both Angular versions are in sync.
angular#13222) This reverts commit bbd2a61.
This issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
npm_package
rule to the required Angular version that has been changed with build: fix invalid required angular version #12089.