-
Notifications
You must be signed in to change notification settings - Fork 108
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
IE 11 support / babel #371
Comments
I am able to workaround this today by adding a custom webpack rule to include opossum using our babel-loader. But I would say that this is usually up to the package to handle es5 support. |
This fails for us when using UglifyJS as well. You can see template literals being used in the minified code: new Error(`Timed out after ${this.options.timeout}ms`) |
I have opened a PR that works with |
Fixed in #380 |
Node.js Version:
10
Operating System:
Windows
Steps to Produce Error:
Use opossum in IE 11.
It looks as though the opossum library isn't running through babel transpilation. This is causing our IE11 bundles to fail due to many non-supported ES6 features like template-literals and class syntax.
I would think the simple addition of adding a babel transpile, utilizing the babel-preset-env, to the build would suffice for enough support.
Thoughts?
The text was updated successfully, but these errors were encountered: