Merge pull request #5941 from FreeCodeCamp/fix/update-babel-to-6.0

Update babel to 6.0
This commit is contained in:
Berkeley Martinez
2016-01-19 13:02:25 -08:00
11 changed files with 20 additions and 15 deletions

View File

@@ -3,7 +3,7 @@ import { Row } from 'react-bootstrap';
import { ToastMessage, ToastContainer } from 'react-toastr';
import { contain } from 'thundercats-react';
import { Nav } from './components/Nav';
import Nav from './components/Nav';
const toastMessageFactory = React.createFactory(ToastMessage.animation);

View File

@@ -4,8 +4,8 @@ import { Disposable, Observable } from 'rx';
import { post$, postJSON$ } from '../utils/ajax-stream.js';
import { AppActions, AppStore } from './flux';
import { HikesActions } from './routes/Hikes/flux';
import { JobActions } from './routes/Jobs/flux';
import HikesActions from './routes/Hikes/flux';
import JobActions from './routes/Jobs/flux';
const ajaxStamp = stamp({
methods: {

View File

@@ -1 +1 @@
export { default as Footer } from './Footer.jsx';
export default from './Footer.jsx';

View File

@@ -1 +1 @@
export { default as Nav } from './Nav.jsx';
export default from './Nav.jsx';

View File

@@ -1 +1 @@
export { default as app$ } from './app-stream.jsx';
export default from './app-stream.jsx';

View File

@@ -1 +1 @@
export { default as HikesActions } from './Actions';
export default from './Actions';

View File

@@ -1 +1 @@
export { default as JobActions } from './Actions';
export default from './Actions';