-
Notifications
You must be signed in to change notification settings - Fork 75
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
Prefer installation as a dev-dependency #2511
base: main
Are you sure you want to change the base?
Conversation
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.
Does this remove the build_runner
and build_web_compilers
dependency checks? That makes me nervous since we'll still have the majority of users running dart pub global activate webdev
to install webdev
out of habit or based on tutorials. How will the globally activated webdev
flow fail now if these dependencies aren't present?
If we can detect whether or not webdev
has been installed as a dev dependency or a global package, can we keep these checks?
|
||
dependency_overrides: | ||
dwds: | ||
path: ../dwds |
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.
Nit: this needs a trailing newline
Fixes #2497
Removes the version checks of pubspec.lock. These now come "for free" by virtue of the pub version solver.