Skip to content

Commit cd06e6d

Browse files
committed
Merge PR#272: Make explicit dependency to babel-core
2 parents 6ab134b + 5ffe9cc commit cd06e6d

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"npm": ">=3.1 <4"
66
},
77
"dependencies": {
8-
"babel": "5.8.23",
8+
"babel-core": "5.8.25",
99
"classnames": "2.1.5",
1010
"eventemitter3": "1.1.1",
1111
"express": "4.13.3",
@@ -24,14 +24,15 @@
2424
},
2525
"devDependencies": {
2626
"autoprefixer": "^6.0.3",
27+
"babel": "^5.8.23",
2728
"babel-eslint": "^4.1.3",
2829
"babel-loader": "^5.3.2",
2930
"babel-plugin-react-transform": "^1.1.1",
3031
"browser-sync": "^2.9.7",
3132
"css-loader": "^0.19.0",
3233
"csscomb": "^3.1.8",
3334
"del": "^2.0.2",
34-
"eslint": "^1.5.1",
35+
"eslint": "^1.6.0",
3536
"eslint-config-airbnb": "0.1.0",
3637
"eslint-loader": "^1.0.0",
3738
"eslint-plugin-react": "^3.5.0",

src/app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*! React Starter Kit | MIT License | http://www.reactstarterkit.com/ */
22

3-
import 'babel/polyfill';
3+
import 'babel-core/polyfill';
44
import ReactDOM from 'react-dom';
55
import FastClick from 'fastclick';
66
import Router from './routes';

src/server.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*! React Starter Kit | MIT License | http://www.reactstarterkit.com/ */
22

3-
import 'babel/polyfill';
3+
import 'babel-core/polyfill';
44
import path from 'path';
55
import express from 'express';
66
import React from 'react';

0 commit comments

Comments
 (0)