Skip to content
This repository was archived by the owner on Jan 14, 2020. It is now read-only.

Commit 0eb18e0

Browse files
committed
chore: use vanilla babel preset
babel-preset-es2015-rollup has been deprecated as you can now configure the vanilla preset to exclude modules (which rollup handles).
1 parent 8f511d0 commit 0eb18e0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.babelrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"presets": [
3-
"es2015-rollup"
3+
["es2015", { "modules": false }]
44
]
55
}

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
"devDependencies": {
3232
"angular-mocks": "^1.5.5",
3333
"babel-core": "^6.8.0",
34-
"babel-preset-es2015-rollup": "^1.1.1",
34+
"babel-preset-es2015": "^6.18.0",
3535
"ghooks": "^1.3.2",
3636
"jasmine-core": "^2.4.1",
3737
"karma": "^0.13.22",

0 commit comments

Comments
 (0)