-
Notifications
You must be signed in to change notification settings - Fork 26.2k
build: update rollup dependencies #43737
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
Conversation
With this change we update `rollup` and remove the usage of no longer maintained `rollup-plugin-commonjs` and `rollup-plugin-node-resolve` plugins.
We can now update to the latest rollup version.
|
||
// Parse the stamp file produced by Bazel from the version control system | ||
let version = '<unknown>'; | ||
if (bazel_version_file) { | ||
const versionTag = require('fs') | ||
.readFileSync(bazel_version_file, {encoding: 'utf-8'}) | ||
.split('\n') | ||
.find(s => s.startsWith('BUILD_SCM_VERSION')); | ||
.find((s) => s.startsWith('BUILD_SCM_VERSION')); |
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.
👀
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 thought it was ng-dev
, but now I realise it’s the prettier vscode plugin.
This PR was merged into the repository by commit 6b85519. |
With this change we update `rollup` and remove the usage of no longer maintained `rollup-plugin-commonjs` and `rollup-plugin-node-resolve` plugins. PR Close #43737
We can now update to the latest rollup version. PR Close #43737
We can now update to the latest rollup version. PR Close #43737
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. |
With this change we update
rollup
and remove the usage of no longer maintainedrollup-plugin-commonjs
androllup-plugin-node-resolve
plugins.