Upgrading client dependancies. Upgrading to babel 6. Moving to es6 package system.

Этот коммит содержится в:
Christopher Speller
2015-11-19 21:12:56 -05:00
родитель 5c35c2631e
Коммит 55b831e4e1
162 изменённых файлов: 821 добавлений и 816 удалений

Просмотреть файл

@@ -5,14 +5,14 @@
to the server on page load. This is to prevent other React controls from spamming
AsyncClient with requests. */
var AsyncClient = require('../utils/async_client.jsx');
var SocketStore = require('../stores/socket_store.jsx');
var ChannelStore = require('../stores/channel_store.jsx');
var PostStore = require('../stores/post_store.jsx');
var UserStore = require('../stores/user_store.jsx');
import * as AsyncClient from '../utils/async_client.jsx';
import SocketStore from '../stores/socket_store.jsx';
import ChannelStore from '../stores/channel_store.jsx';
import PostStore from '../stores/post_store.jsx';
import UserStore from '../stores/user_store.jsx';
var Utils = require('../utils/utils.jsx');
var Constants = require('../utils/constants.jsx');
import * as Utils from '../utils/utils.jsx';
import Constants from '../utils/constants.jsx';
export default class ChannelLoader extends React.Component {
constructor(props) {