-
Notifications
You must be signed in to change notification settings - Fork 32
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
Support the dev-server for IE11 #132
Conversation
package.json
Outdated
"cli-columns": "3.1.2", | ||
"copy-webpack-plugin": "4.5.2", | ||
"css-loader": "0.28.7", | ||
"eventsource-polyfill": "^0.9.6", |
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.
Any reason not to pin this dependency as we've done with the others?
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.
Ah thanks - just npm installed didn't I!
Guess I need to update some tests! Thanks CI. |
Codecov Report
@@ Coverage Diff @@
## master #132 +/- ##
==========================================
+ Coverage 59.71% 59.81% +0.09%
==========================================
Files 8 8
Lines 427 428 +1
Branches 92 92
==========================================
+ Hits 255 256 +1
Misses 172 172
Continue to review full report at Codecov.
|
bug
Adds an explicit dependency on
strip-ansi@3.0.1
, as from version4.0.0
the package is using ES2015 javascript and cannot be executed by IE11.Also adds the
eventsource-polyfill
for the webpack dev server, as it is required for using IE11.