-
Notifications
You must be signed in to change notification settings - Fork 6.8k
build: remove unnecessary dependency in dev-app devserver #16842
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: remove unnecessary dependency in dev-app devserver #16842
Conversation
Removes an unnecessary dependency in the dev-app devserver Bazel target. Since explicitly add all UMD bundles of MDC, the bulk dependency on `material-components-web` is not needed anymore.
@@ -133,8 +133,8 @@ ts_devserver( | |||
"@npm//:node_modules/moment/min/moment-with-locales.min.js", | |||
"@npm//:node_modules/rxjs/bundles/rxjs.umd.min.js", | |||
"@npm//:node_modules/systemjs/dist/system.js", | |||
"@npm//:node_modules/tslib/tslib.js", |
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.
Was tslib
missing previously? or was it provided by @npm//material-components-web
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 transitively brought in by material-components-web
(which was by accident).
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.
LGTM
Removes an unnecessary dependency in the dev-app devserver Bazel target. Since explicitly add all UMD bundles of MDC, the bulk dependency on `material-components-web` is not needed anymore. (cherry picked from commit 2d3e205)
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. |
Removes an unnecessary dependency in the dev-app devserver Bazel
target. Since explicitly add all UMD bundles of MDC, the bulk
dependency on
material-components-web
is not needed anymore.