Skip to content

Commit

Permalink
fix(build): Do not use babel-preset-env but babel-preset-latest
Browse files Browse the repository at this point in the history
  • Loading branch information
lukastaegert committed Jun 7, 2017
1 parent 36ecc3f commit 97dbb7c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 11 deletions.
11 changes: 1 addition & 10 deletions build.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,7 @@ rollup
],
plugins: [
babel({
presets: [
[
'env',
{
modules: false,
loose: true,
targets: { node: 4 }
}
]
],
presets: [['latest', { es2015: { modules: false, loose: true } }]],
plugins: ['ramda', 'external-helpers']
})
]
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
"devDependencies": {
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-ramda": "^1.2.0",
"babel-preset-env": "^1.5.1",
"babel-preset-latest": "^6.24.1",
"chai": "^4.0.1",
"codecov": "^2.2.0",
"husky": "^0.13.4",
Expand Down

0 comments on commit 97dbb7c

Please sign in to comment.