Skip to content

Commit

Permalink
fix(Babel): remove NodeJS v4 support
Browse files Browse the repository at this point in the history
BREAKING CHANGES:  minimum required version for `NodeJS` is 6.0.0
  • Loading branch information
nodkz committed Aug 17, 2018
1 parent 742bead commit dc57509
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .babelrc
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"presets": [
["env", {
"targets": {
"node": 4
},
"node": 6
}
}]
],
"plugins": [
Expand All @@ -13,7 +13,7 @@
["transform-runtime", {
"helpers": false,
"polyfill": false,
"regenerator": true,
"regenerator": true
}]
]
}

0 comments on commit dc57509

Please sign in to comment.