-
Notifications
You must be signed in to change notification settings - Fork 816
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
Ensure all private modules are exported correctly #2050
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.
As per https://travis-ci.org/GoogleChrome/workbox/builds/526673251#L2763-L2775, I think there's some cleanup needed at
import {executeQuotaErrorCallbacks} from 'workbox-core/_private/quota.mjs'; |
Ahh, yes, so given that |
a13d481
to
f213c7b
Compare
PR-Bot Size PluginChanged File Sizes
New FilesNo new files have been added. All File SizesView Table
Workbox Aggregate Size Plugin8.96KB gzip'ed (60% of limit) |
R: @jeffposnick
Fixes #2049, fixes #2045.
This PR ensures all files in
_private
directory are exported via the top level_private.mjs
file. It also removes exports that are no longer needed.The
quota.mjs
file exported two separate symbols, so it initially failed the new private-exports test, but since it's not used outside ofworkbox-core
it was fine to just move it to theutils
folder instead.