File tree Expand file tree Collapse file tree 9 files changed +33
-590
lines changed
src/app/containers/monitors/InspectorWrapper
redux-devtools-test-generator
redux-devtools/examples/todomvc Expand file tree Collapse file tree 9 files changed +33
-590
lines changed Original file line number Diff line number Diff line change 3434 "homepage" : " https://github.com/reduxjs/redux-devtools" ,
3535 "dependencies" : {
3636 "body-parser" : " ^1.15.0" ,
37- "chalk" : " ^1.1.3 " ,
37+ "chalk" : " ^2.4.2 " ,
3838 "cors" : " ^2.7.1" ,
3939 "cross-spawn" : " ^6.0.5" ,
4040 "electron" : " ^4.0.1" ,
Original file line number Diff line number Diff line change @@ -9,12 +9,7 @@ var graphqlMiddleware = require('./middleware/graphql');
99var app = express . Router ( ) ;
1010
1111function serveUmdModule ( name ) {
12- app . use (
13- express . static (
14- require . resolve ( name ) . match ( / .* \/ ( n o d e _ m o d u l e s | p a c k a g e s ) \/ [ ^ / ] + \/ / ) [ 0 ] +
15- 'umd'
16- )
17- ) ;
12+ app . use ( express . static ( path . dirname ( require . resolve ( name + '/package.json' ) ) + '/umd' ) ) ;
1813}
1914
2015function routes ( options , store , scServer ) {
Original file line number Diff line number Diff line change 7676 "nanoid" : " ^2.0.0" ,
7777 "prop-types" : " ^15.5.10" ,
7878 "react-icons" : " ^2.2.5" ,
79- "react-redux" : " ^5 .0.5 " ,
80- "redux" : " ^3 .0.5 " ,
79+ "react-redux" : " ^6 .0.0 " ,
80+ "redux" : " ^4 .0.1 " ,
8181 "redux-devtools" : " ^3.4.0" ,
8282 "redux-devtools-chart-monitor" : " ^1.6.1" ,
83- "redux-devtools-inspector" : " ^0.11.0 " ,
83+ "redux-devtools-inspector" : " ^0.12.1 " ,
8484 "redux-devtools-instrument" : " ^1.8.0" ,
8585 "redux-devtools-log-monitor" : " ^1.3.0" ,
8686 "redux-devtools-test-generator" : " ^0.5.1" ,
Original file line number Diff line number Diff line change 11import React , { Component } from 'react' ;
22import PropTypes from 'prop-types' ;
3- import { format } from 'jsondiffpatch/src/formatters/html ' ;
3+ import { formatters } from 'jsondiffpatch' ;
44import styled from 'styled-components' ;
55import { effects } from 'devui' ;
66
@@ -227,7 +227,7 @@ export default class VisualDiffTab extends Component {
227227 let __html ;
228228 const data = this . props . data ;
229229 if ( data ) {
230- __html = format ( data ) ;
230+ __html = formatters . html . format ( data ) ;
231231 }
232232
233233 return < StyledContainer dangerouslySetInnerHTML = { { __html } } /> ;
Original file line number Diff line number Diff line change 3838 "export-files-webpack-plugin" : " 0.0.1" ,
3939 "html-webpack-plugin" : " ^3.2.0" ,
4040 "lodash.shuffle" : " ^4.2.0" ,
41- "raw-loader" : " ^0.5.1 " ,
41+ "raw-loader" : " ^1.0.0 " ,
4242 "react" : " ^16.4.2" ,
4343 "react-bootstrap" : " ^0.30.6" ,
4444 "react-dom" : " ^16.4.2" ,
Original file line number Diff line number Diff line change 4242 "@babel/preset-react" : " ^7.0.0" ,
4343 "babel-loader" : " ^8.0.5" ,
4444 "clean-webpack-plugin" : " ^1.0.0" ,
45- "css-loader" : " ^0.26.1 " ,
45+ "css-loader" : " ^2.1.0 " ,
4646 "enzyme" : " ^3.1.0" ,
4747 "enzyme-adapter-react-16" : " ^1.0.2" ,
4848 "enzyme-to-json" : " ^3.3.0" ,
4949 "expect" : " ^1.20.1" ,
5050 "export-files-webpack-plugin" : " 0.0.1" ,
51- "file-loader" : " ^0.10 .0" ,
51+ "file-loader" : " ^3.0 .0" ,
5252 "html-webpack-plugin" : " ^3.2.0" ,
5353 "jest" : " ^24.1.0" ,
5454 "lodash.shuffle" : " ^4.2.0" ,
Original file line number Diff line number Diff line change 4545 "@babel/preset-react" : " ^7.0.0" ,
4646 "babel-loader" : " ^8.0.5" ,
4747 "node-libs-browser" : " ^0.5.2" ,
48- "raw-loader" : " ^0.5.1 " ,
48+ "raw-loader" : " ^1.0.0 " ,
4949 "redux-devtools" : " ^3.0.1" ,
5050 "redux-devtools-dock-monitor" : " ^1.0.1" ,
5151 "redux-devtools-log-monitor" : " ^1.0.2" ,
Original file line number Diff line number Diff line change 2525 "@babel/preset-env" : " ^7.3.1" ,
2626 "@babel/preset-react" : " ^7.0.0" ,
2727 "classnames" : " ^2.1.2" ,
28- "raw-loader" : " ^0.5.1 " ,
28+ "raw-loader" : " ^1.0.0 " ,
2929 "react" : " ^16.7.0" ,
3030 "react-dom" : " ^16.7.0" ,
3131 "react-redux" : " ^6.0.0" ,
You can’t perform that action at this time.
0 commit comments