You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The string.prototype.matchall dependency to implement String.prototype.matchAll() in Node v10 was added because "The Workbox project [...] need to continue support Node v10 until our next major release version" (see #49). workbox-build is now on version 7.0.0 and has a minimum supported Node version of v16. String.prototype.matchAll() is available in Node since v12 according to MDN.
The dependency tree of string.prototype.matchall is bloated, so i would like to have it removed as the polyfill is no longer required by the most recent workbox-build version.
Dependency tree of string.prototype.matchall:
This screenshot is from an internal tool to analyze the package-lock.json file.
Dependencies starting from the second level below string.prototype.matchall are collapsed for better readability.
Removing no longer required dependency string.prototype.matchall would save users of this package from installing a lot of packages.
The text was updated successfully, but these errors were encountered:
The
string.prototype.matchall
dependency to implementString.prototype.matchAll()
in Node v10 was added because "The Workbox project [...] need to continue support Node v10 until our next major release version" (see #49).workbox-build
is now on version 7.0.0 and has a minimum supported Node version of v16.String.prototype.matchAll()
is available in Node since v12 according to MDN.The dependency tree of
string.prototype.matchall
is bloated, so i would like to have it removed as the polyfill is no longer required by the most recentworkbox-build
version.Dependency tree of
string.prototype.matchall
:This screenshot is from an internal tool to analyze the
package-lock.json
file.Dependencies starting from the second level below
string.prototype.matchall
are collapsed for better readability.Removing no longer required dependency
string.prototype.matchall
would save users of this package from installing a lot of packages.The text was updated successfully, but these errors were encountered: