fix: fix umd builds (#2214)

This commit is contained in:
Tony Alves
2019-03-18 12:47:58 -07:00
committed by Shawn Erquhart
parent e906091c8f
commit e04f6bec1d
11 changed files with 32 additions and 30 deletions

View File

@ -4,7 +4,7 @@ import { Provider } from 'react-redux';
import { Route } from 'react-router-dom';
import { ConnectedRouter } from 'react-router-redux';
import history from 'Routing/history';
import store from 'Redux';
import store from 'ReduxStore';
import { mergeConfig } from 'Actions/config';
import { getPhrases } from 'Constants/defaultPhrases';
import { I18n } from 'react-polyglot';

View File

@ -4,7 +4,7 @@
*/
import { once } from 'lodash';
import { getMediaLibrary } from 'Lib/registry';
import store from 'Redux';
import store from 'ReduxStore';
import { createMediaLibrary, insertMedia } from 'Actions/mediaLibrary';
const initializeMediaLibrary = once(async function initializeMediaLibrary(name, options) {

View File

@ -2,7 +2,7 @@ import { combineReducers } from 'redux';
import { routerReducer } from 'react-router-redux';
import { reducer as notifReducer } from 'redux-notifications';
import optimist from 'redux-optimist';
import reducers from '.';
import reducers from './index';
export default optimist(
combineReducers({

View File

@ -1,6 +1,6 @@
import { resolvePath } from 'netlify-cms-lib-util';
import { currentBackend } from 'coreSrc/backend';
import store from 'Redux';
import store from 'ReduxStore';
import { getIntegrationProvider } from 'Integrations';
import { selectIntegration } from 'Reducers';