-
Notifications
You must be signed in to change notification settings - Fork 892
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
Revert introduction of safevalues #8395
Conversation
🦋 Changeset detectedLatest commit: 2e00374 The changes in this PR will be included in the next version bump. This PR includes changesets to release 5 packages
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
Changeset File Check
|
Size Report 1Affected Products
Test Logs |
Size Analysis Report 1Affected Products
Test Logs |
This reverts commit f58d48c.
An issue in App Check revealed that safevalues is not compatible with es5, since template tag functions are required, and those are not supported in es5. Our bundler tries to compensate for this by replacing template tag functions with
tslib.__makeTemplateObject
, but safevalues does not assert that those are valid template string literals, and throws an error.This can be fixed by upgrading all of our browser cjs bundles from es5 to es6, but we don't want to make that breaking change at this time, so we must revert our usage of safevalues until we're ready to drop es5 support.
For more details, see #8386 (comment)