mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-12 20:18:41 -09:00
Fix config-store imports (#733)
* `configureStore` => `configure-store` * dependencies: add redux-logger
This commit is contained in:
parent
bbf0af66b2
commit
a1f8413680
3 changed files with 7 additions and 7 deletions
|
|
@ -13,7 +13,7 @@ import * as updaterActions from './actions/updater';
|
|||
import * as sessionActions from './actions/sessions';
|
||||
import HyperTermContainer from './containers/hyperterm';
|
||||
import {loadConfig, reloadConfig} from './actions/config';
|
||||
import configureStore from './store/configureStore';
|
||||
import configureStore from './store/configure-store';
|
||||
|
||||
// Disable pinch zoom
|
||||
webFrame.setZoomLevelLimits(1, 1);
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
import configureStoreForProduction from './configureStore.prod';
|
||||
import configureStoreForDevelopment from './configureStore.dev';
|
||||
import configureStoreForProduction from './configure-store.prod';
|
||||
import configureStoreForDevelopment from './configure-store.dev';
|
||||
|
||||
export default () => {
|
||||
if (process.env.NODE_ENV === 'production') {
|
||||
|
|
|
|||
|
|
@ -40,14 +40,15 @@
|
|||
"babel-preset-react": "^6.11.1",
|
||||
"concurrently": "^2.2.0",
|
||||
"copy-webpack-plugin": "^3.0.1",
|
||||
"electron-builder": "^7.0.1",
|
||||
"electron": "1.4.0",
|
||||
"electron-builder": "^7.0.1",
|
||||
"electron-devtools-installer": "^2.0.0",
|
||||
"eslint-config-xo-react": "^0.9.0",
|
||||
"eslint-plugin-react": "^6.2.2",
|
||||
"husky": "^0.11.6",
|
||||
"redux-logger": "^2.6.1",
|
||||
"webpack": "^2.1.0-beta.15",
|
||||
"xo": "^0.16.0",
|
||||
"electron-devtools-installer": "^2.0.0"
|
||||
"xo": "^0.16.0"
|
||||
},
|
||||
"xo": {
|
||||
"extends": "xo-react",
|
||||
|
|
@ -103,7 +104,6 @@
|
|||
}
|
||||
},
|
||||
"scripts": {
|
||||
"dev": "webpack --watch",
|
||||
"dev": "concurrently --kill-others \"npm run dev-build\" \"npm run start\"",
|
||||
"dev-build": "webpack --watch",
|
||||
"lint": "xo",
|
||||
|
|
|
|||
Loading…
Reference in a new issue