Skip to content

Commit

Permalink
Merge PR#272: Make explicit dependency to babel-core
Browse files Browse the repository at this point in the history
  • Loading branch information
koistya committed Oct 4, 2015
2 parents 6ab134b + 5ffe9cc commit cd06e6d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"npm": ">=3.1 <4"
},
"dependencies": {
"babel": "5.8.23",
"babel-core": "5.8.25",
"classnames": "2.1.5",
"eventemitter3": "1.1.1",
"express": "4.13.3",
Expand All @@ -24,14 +24,15 @@
},
"devDependencies": {
"autoprefixer": "^6.0.3",
"babel": "^5.8.23",
"babel-eslint": "^4.1.3",
"babel-loader": "^5.3.2",
"babel-plugin-react-transform": "^1.1.1",
"browser-sync": "^2.9.7",
"css-loader": "^0.19.0",
"csscomb": "^3.1.8",
"del": "^2.0.2",
"eslint": "^1.5.1",
"eslint": "^1.6.0",
"eslint-config-airbnb": "0.1.0",
"eslint-loader": "^1.0.0",
"eslint-plugin-react": "^3.5.0",
Expand Down
2 changes: 1 addition & 1 deletion src/app.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*! React Starter Kit | MIT License | http://www.reactstarterkit.com/ */

import 'babel/polyfill';
import 'babel-core/polyfill';
import ReactDOM from 'react-dom';
import FastClick from 'fastclick';
import Router from './routes';
Expand Down
2 changes: 1 addition & 1 deletion src/server.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*! React Starter Kit | MIT License | http://www.reactstarterkit.com/ */

import 'babel/polyfill';
import 'babel-core/polyfill';
import path from 'path';
import express from 'express';
import React from 'react';
Expand Down

0 comments on commit cd06e6d

Please sign in to comment.