Update babel to 6.0

This commit is contained in:
Logan Tegman
2016-01-06 09:33:55 -08:00
parent 05d34c8e15
commit 4341a3eee2
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';