Skip to content

Commit

Permalink
chore: transition from 6to5 to babel
Browse files Browse the repository at this point in the history
  • Loading branch information
dtinth committed Feb 20, 2015
1 parent 0185dd9 commit 9715762
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion config/webpack.js
Expand Up @@ -37,7 +37,7 @@ let config = {
{
test: /\.js$/,
include: [path('src'), path('spec')],
loader: '6to5?modules=common&experimental=true',
loader: 'babel?modules=common&experimental=true',
},
{
test: /\.pegjs/,
Expand Down
2 changes: 1 addition & 1 deletion gulpfile.js
@@ -1,5 +1,5 @@

require('6to5/register')
require('babel-core/register')
global.Promise = require('bluebird')

require('glob').sync('./tasks/*.js').forEach(function(file) { require(file) })
Expand Down
5 changes: 2 additions & 3 deletions package.json
Expand Up @@ -28,10 +28,9 @@
},
"homepage": "https://github.com/spacetme/bemuse",
"devDependencies": {
"6to5": "^3.5.3",
"6to5-core": "^3.5.3",
"6to5-loader": "^3.0.0",
"autoprefixer-loader": "^1.0.0",
"babel-core": "^4.3.0",
"babel-loader": "^4.0.0",
"body-parser": "^1.10.0",
"browser-launcher": "^1.0.0",
"bundle-loader": "^0.5.2",
Expand Down
2 changes: 1 addition & 1 deletion src/polyfill/index.js
@@ -1,5 +1,5 @@

import '6to5/polyfill'
import 'babel-core/polyfill'
import debug from 'debug'
import Bluebird from 'bluebird'

Expand Down

0 comments on commit 9715762

Please sign in to comment.