[Doppins] Upgrade dependency babel-polyfill to 6.9.1 #14
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Hi!
A new version was just released of
babel-polyfill
, so Doppinshas upgraded your project's dependency ranges.
Make sure that it doesn't break anything, and happy merging!
Upgraded babel-polyfill from
6.9.0
to6.9.1
Changelog:
Version 6.9.1
6.9.1 (2016-05-29)
Just 2 fixes this release!
this
correctly when using async arrow function class properties without a super class).react-constant-elements
plugin to help optimize react more (the plugin wasn't applying to JSX with text).Also, thanks to
@mucsi96
for catching the extraneous code coverage comments we were leaving when publishing!Bug Fix
babel-core
#3508
(https://github.com/babel/babel/pull/3510
) Assign_this
tothis
when there is noSuperclass
in aClass
when using class properties. Fixes T7364. (@ehjay
)The fix correctly set this:
var _this;
->var _this = this;
babel-plugin-transform-react-constant-elements
,babel-types
#3510
(https://github.com/babel/babel/pull/3510
) Make JSXText Immutable. Fixes T7251. (@le0nik
)JSX with text in it was not being hoisted as other constant elements.
Internal
#3513
(https://github.com/babel/babel/pull/3513
) Make sure the env is production when publishing. (@hzoo
)babel-regenerator-runtime
#3507
(https://github.com/babel/babel/pull/3507
) babel-regenerator-runtime license field. (@leipert
)babel-core
#3446
(https://github.com/babel/babel/pull/3446
) Use more ideal mocha hooks in babel-core/test/api. (@jmm
)babel-polyfill
,babel-regenerator-runtime
,babel-runtime
#3494
(https://github.com/babel/babel/pull/3494
) Useregenerator-runtime
from npm; removedbabel-regenerator-runtime
fork since there aren't differences anymore. (@benjamn
)