-
Notifications
You must be signed in to change notification settings - Fork 212
Remove package:js
dependency in build_web_compilers
#3994
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
base: master
Are you sure you want to change the base?
Conversation
PR HealthChangelog Entry ❗
Changes to files need to be accounted for in their respective changelogs. This check can be disabled by tagging the PR with |
I'll try to unpin the |
Package publishing
Documentation at https://github.com/dart-lang/ecosystem/wiki/Publishing-automation. |
@simolus3 the "community" tests are still failing but I think that's unrelated to this PR? If so I can approve+merge this. There have been a lot of changes to build_test, I am anyway expecting that while generators will keep working with the next release there is some work needed to get e2e tests working again. (bulid_test will have a breaking release). |
Yes, the community tests aren't doing anything with these assets so I think that failure is unrelated. Drift tests work with the latest released packages so there might be an issue in other unreleased changes - I'll try to reproduce this locally. |
@davidmorgan I don't think the failure is drift's fault, it really looks like a regression, probably in The failing builders look like this:
Looking at the source in It wouldn't surprise me that You should be able to reproduce this by following the steps in |
package:js
has been deprecated in favor of the newdart:js_interop
library (andpackage:web
). This migrates apackage:js
import inbuild_web_compilers
used in a helper program to implementStackTrace.toString
for DDC apps.I've replaced the
package:js
import with the new interop library, removed the dependency and randart run build_runner build
in thebuild_web_compilers
directory.