Primarily a security and dependency updates release.
Breaking change: in task-config.js
's javascripts.babel.presets
, es2015
must be replaced with env
:
babel: {
presets: ['es2015', 'stage-1']
}
becomes
babel: {
presets: ['env', 'stage-1']
}
For more info, see PR #573
Also includes PR #574