Skip to content

Commit c3c47a6

Browse files
committed
Update remotedev-app and monitors
1 parent 822d26a commit c3c47a6

File tree

5 files changed

+7
-12
lines changed

5 files changed

+7
-12
lines changed

gulpfile.babel.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@ import wrapConfig from './webpack/wrap.config';
1313

1414
function copy(dest) {
1515
gulp.src('./src/assets/**/*').pipe(gulp.dest(dest));
16-
gulp.src('./node_modules/codemirror/lib/codemirror.css').pipe(gulp.dest(`${dest}/css`));
17-
gulp.src('./node_modules/codemirror/theme/night.css').pipe(gulp.dest(`${dest}/css`));
1816
}
1917

2018
/*

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
"jsdom": "^9.8.3",
6060
"mocha": "^3.1.2",
6161
"raw-loader": "^0.5.1",
62-
"react-addons-test-utils": "^15.2.1",
62+
"react-addons-test-utils": "^15.4.1",
6363
"react-transform-catch-errors": "^1.0.0",
6464
"react-transform-hmr": "^1.0.1",
6565
"rimraf": "^2.5.3",
@@ -69,17 +69,17 @@
6969
"webpack": "^1.13.3"
7070
},
7171
"dependencies": {
72-
"codemirror": "^5.16.0",
7372
"jsan": "^3.1.5",
7473
"lodash": "^4.17.2",
75-
"react": "^15.2.1",
76-
"react-dom": "^15.2.1",
74+
"react": "^15.4.1",
75+
"react-dom": "^15.4.1",
7776
"react-icons": "^2.2.1",
7877
"react-redux": "^4.4.5",
7978
"redux": "^3.5.2",
8079
"redux-devtools": "^3.3.1",
8180
"redux-devtools-instrument": "^1.3.3",
82-
"remotedev-app": "^0.10.0-beta-2",
81+
"remotedev-app": "^0.10.0",
82+
"remotedev-monitor-components": "^0.0.4",
8383
"remotedev-slider": "^1.1.1",
8484
"remotedev-utils": "0.0.1"
8585
}

src/app/containers/App.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ import SliderButton from 'remotedev-app/lib/components/buttons/SliderButton';
1919
import ImportButton from 'remotedev-app/lib/components/buttons/ImportButton';
2020
import ExportButton from 'remotedev-app/lib/components/buttons/ExportButton';
2121
import PrintButton from 'remotedev-app/lib/components/buttons/PrintButton';
22-
import TestGenerator from 'remotedev-app/lib/components/TestGenerator';
2322
import SettingsIcon from 'react-icons/lib/md/settings';
2423
import LeftIcon from 'react-icons/lib/md/border-left';
2524
import RightIcon from 'react-icons/lib/md/border-right';
@@ -49,7 +48,7 @@ class App extends Component {
4948
liftedState={liftedState}
5049
monitorState={this.props.monitorState}
5150
dispatch={this.props.liftedDispatch}
52-
testComponent={isRedux && TestGenerator}
51+
lib={options.lib}
5352
/>
5453
<Notification />
5554
{sliderIsOpen && options.connectionId &&

src/browser/extension/window/index.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import 'remotedev-monitor-components/lib/presets';
12
import React from 'react';
23
import { render } from 'react-dom';
34
import { Provider } from 'react-redux';

src/browser/views/includes/style.pug

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,3 @@ style.
5959
overflow: visible !important;
6060
}
6161
}
62-
63-
link(href='/css/codemirror.css', rel="stylesheet")
64-
link(href='/css/night.css', rel="stylesheet")

0 commit comments

Comments
 (0)