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
{{ message }}
This repository has been archived by the owner on May 23, 2019. It is now read-only.
Simply using require('intl-messageformat'); in a bundle that is browserified results in JavaScript errors in IE8. The errors occur as a result of the keyword default being used as a property for the modules that use esnext.
I'm probably going to workaround this by including IntlMessageFormat on window through the bower package, but I haven't quite figured this out with intl-format-cache.
I'm curious if this is a known issue or if there is some way to bundle this package with browserify and have it work in IE8.
The text was updated successfully, but these errors were encountered:
Good catch! We don't have automated tests for Browserify, otherwise this would have been caught. I'll update all of the packages' index.js files that are used by browserify to work with an ES3 environment.
Simply using
require('intl-messageformat');
in a bundle that is browserified results in JavaScript errors in IE8. The errors occur as a result of the keyworddefault
being used as a property for the modules that use esnext.I'm probably going to workaround this by including
IntlMessageFormat
onwindow
through the bower package, but I haven't quite figured this out withintl-format-cache
.I'm curious if this is a known issue or if there is some way to bundle this package with browserify and have it work in IE8.
The text was updated successfully, but these errors were encountered: