Skip to content

Commit

Permalink
chore: support node >= 6
Browse files Browse the repository at this point in the history
  • Loading branch information
mjeanroy committed Apr 5, 2020
1 parent d9d4988 commit 57664ec
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .babelrc
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@
"presets": [
[
"@babel/preset-env", {
"modules": "cjs"
"modules": "cjs",
"targets": {
"node": "6"
}
}
]
],
Expand All @@ -16,7 +19,10 @@
"presets": [
[
"@babel/preset-env", {
"modules": "false"
"modules": "false",
"targets": {
"node": "6"
}
}
]
]
Expand Down
3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,5 +66,8 @@
"rollup-plugin-prettier": "0.6.0",
"rollup-plugin-strip-banner": "1.2.0",
"tmp": "0.1.0"
},
"engines": {
"node": ">=6.0.0"
}
}

0 comments on commit 57664ec

Please sign in to comment.