Skip to content

Commit

Permalink
chore: update babel dependencies (#1443)
Browse files Browse the repository at this point in the history
  • Loading branch information
jeeyyy authored Mar 19, 2019
1 parent 22fb124 commit aace2f3
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 10 deletions.
13 changes: 10 additions & 3 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -1,8 +1,15 @@
{
"presets": [
"env"
[
"@babel/preset-env"
]
],
"plugins": [
"transform-object-rest-spread"
[
"@babel/plugin-proposal-object-rest-spread",
{
"loose": true
}
]
]
}
}
2 changes: 1 addition & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ module.exports = function(grunt) {
clean: ['dist', 'tmp', 'axe.js', 'axe.*.js'],
babel: {
options: {
compact: 'false'
compact: false
},
core: {
files: [
Expand Down
11 changes: 5 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -73,13 +73,12 @@
"fmt": "prettier --write *.{json,md,js} **/*.ts './{build,doc,lib,test}/**/*.{json,md,js,ts}'"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/core": "^7.3.4",
"@babel/plugin-proposal-object-rest-spread": "^7.3.4",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.3.4",
"aria-query": "^3.0.0",
"axios": "^0.18.0",
"babel-core": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.6.5",
"babel-polyfill": "^6.7.4",
"babel-preset-env": "^1.7.0",
"babelify": "^10.0.0",
"blanket": "~1.2.3",
"browserify": "^16.2.3",
Expand All @@ -96,7 +95,7 @@
"fs-extra": "^7.0.0",
"globby": "^8.0.1",
"grunt": "^1.0.3",
"grunt-babel": "^7.0.0",
"grunt-babel": "^8.0.0",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-connect": "^2.0.0",
Expand Down

0 comments on commit aace2f3

Please sign in to comment.