From c5d640fe1c96aeaf27d5bccf22c6d6bceade05ad Mon Sep 17 00:00:00 2001 From: Bohdan L Date: Tue, 7 Apr 2015 17:17:45 +0300 Subject: [PATCH] Update Babel and ESLint to the latest versions --- .babelrc | 3 +++ package.json | 12 ++++++------ webpack.config.js | 2 +- 3 files changed, 10 insertions(+), 7 deletions(-) create mode 100644 .babelrc diff --git a/.babelrc b/.babelrc new file mode 100644 index 000000000..ce840ab86 --- /dev/null +++ b/.babelrc @@ -0,0 +1,3 @@ +{ + "stage": 0 +} \ No newline at end of file diff --git a/package.json b/package.json index c52fa49fc..17e10f6db 100644 --- a/package.json +++ b/package.json @@ -10,7 +10,7 @@ "npm": ">= 2.1" }, "dependencies": { - "babel": "4.7.16", + "babel": "5.1.10", "bootstrap": "3.3.4", "eventemitter3": "0.1.6", "express": "4.12.3", @@ -24,14 +24,14 @@ }, "devDependencies": { "autoprefixer-loader": "^1.2.0", - "babel-core": "^4.7.16", - "babel-eslint": "^2.0.2", - "babel-loader": "^4.3.0", + "babel-core": "^5.1.10", + "babel-eslint": "^3.0.1", + "babel-loader": "^5.0.0", "browser-sync": "^2.5.3", "css-loader": "^0.10.1", "del": "^1.1.1", - "eslint": "^0.18.0", - "eslint-loader": "^0.9.0", + "eslint": "^0.19.0", + "eslint-loader": "^0.10.0", "git-push": "^0.1.0", "gulp": "^3.8.11", "gulp-autoprefixer": "^2.1.0", diff --git a/webpack.config.js b/webpack.config.js index fb2eaa3ab..2e5130cd6 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -87,7 +87,7 @@ var config = { { test: /\.jsx?$/, exclude: /node_modules/, - loader: 'babel-loader?playground' + loader: 'babel-loader' } ] }