Fixing build after babel-core update.

This commit is contained in:
Sérgio Gomes 2016-12-15 15:36:21 +00:00
parent 56102636b6
commit 9fac88fbb4
No known key found for this signature in database
GPG Key ID: B273014C8B9F3B03

View File

@ -10,6 +10,7 @@
"devDependencies": {
"acorn": "^4.0.3",
"babel-core": "^6.20.0",
"babel-preset-es2015": "^6.18.0",
"browser-sync": "^2.2.3",
"chai": "^3.3.0",
"chai-jquery": "^2.0.0",
@ -67,6 +68,9 @@
"test": "gulp && git status | grep 'working directory clean' >/dev/null || (echo 'Please commit all changes generated by building'; exit 1)"
},
"babel": {
"only": "gulpfile.babel.js"
"only": "gulpfile.babel.js",
"presets": [
"es2015"
]
}
}