ff-stream-web

git clone git://archive.git.mtrnord.blog/MTRNord/ff-stream-web.git
Log | Files | Refs | README | LICENSE

commit cd06e6d32bce9e76d832372c49add0104f65e3d3
parent 6ab134bd013e16a99233eaa6ec2b6f4f026b9799
Author: Konstantin Tarkus <hello@tarkus.me>
Date:   Sun,  4 Oct 2015 11:50:11 +0300

Merge PR#272: Make explicit dependency to babel-core

Diffstat:
Mpackage.json | 5+++--
Msrc/app.js | 2+-
Msrc/server.js | 2+-
3 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/package.json b/package.json @@ -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", @@ -24,6 +24,7 @@ }, "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", @@ -31,7 +32,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", diff --git a/src/app.js b/src/app.js @@ -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'; diff --git a/src/server.js b/src/server.js @@ -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';