File tree Expand file tree Collapse file tree 4 files changed +21
-1
lines changed Expand file tree Collapse file tree 4 files changed +21
-1
lines changed Original file line number Diff line number Diff line change 6767 "redux-devtools-log-monitor" : " ^1.0.2" ,
6868 "redux-slider-monitor" : " ^1.0.1" ,
6969 "redux-thunk" : " ^1.0.3" ,
70- "remotedev-app" : " ^0.2.2 "
70+ "remotedev-app" : " ^0.2.4 "
7171 }
7272}
Original file line number Diff line number Diff line change 1+ import React from 'react' ;
2+ import { render } from 'react-dom' ;
3+ import DevTools from 'remotedev-app' ;
4+
5+ render (
6+ < DevTools /> ,
7+ document . getElementById ( 'root' )
8+ ) ;
Original file line number Diff line number Diff line change 1+ doctype html
2+
3+ html
4+ head
5+ meta( charset ='UTF-8' )
6+ title RemoteDev
7+ include ./includes/style.jade
8+
9+ body
10+ #root
11+ script( src ='/js/remote.bundle.js' )
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ const baseConfig = (params) => ({
88 background : [ `${ extpath } background/index` ] ,
99 options : [ `${ extpath } options/index` ] ,
1010 window : [ `${ extpath } window/index` ] ,
11+ remote : [ `${ extpath } window/remote` ] ,
1112 devpanel : [ `${ extpath } devpanel/index` ] ,
1213 devtools : [ `${ extpath } devtools/index` ] ,
1314 content : [ `${ extpath } inject/contentScript` ] ,
You can’t perform that action at this time.
0 commit comments