mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-07-26 07:59:48 +03:00
Fix
This commit is contained in:
parent
3c5aee4da3
commit
70e443fcb0
|
@ -12,6 +12,7 @@
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@redux-devtools/core": "^3.9.0",
|
"@redux-devtools/core": "^3.9.0",
|
||||||
"@redux-devtools/dock-monitor": "^1.4.0",
|
"@redux-devtools/dock-monitor": "^1.4.0",
|
||||||
|
"@redux-devtools/inspector-monitor": "^1.0.0",
|
||||||
"base16": "^1.0.0",
|
"base16": "^1.0.0",
|
||||||
"connected-react-router": "^6.9.1",
|
"connected-react-router": "^6.9.1",
|
||||||
"history": "^4.10.1",
|
"history": "^4.10.1",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import React, { CSSProperties } from 'react';
|
import React, { CSSProperties } from 'react';
|
||||||
import { connect } from 'react-redux';
|
import { connect } from 'react-redux';
|
||||||
import pkg from '../../package.json';
|
import pkg from '@redux-devtools/inspector-monitor/package.json';
|
||||||
import Button from 'react-bootstrap/Button';
|
import Button from 'react-bootstrap/Button';
|
||||||
import FormGroup from 'react-bootstrap/FormGroup';
|
import FormGroup from 'react-bootstrap/FormGroup';
|
||||||
import FormControl from 'react-bootstrap/FormControl';
|
import FormControl from 'react-bootstrap/FormControl';
|
||||||
|
@ -12,7 +12,7 @@ import Row from 'react-bootstrap/Row';
|
||||||
import * as base16 from 'base16';
|
import * as base16 from 'base16';
|
||||||
import { push as pushRoute } from 'connected-react-router';
|
import { push as pushRoute } from 'connected-react-router';
|
||||||
import { Path } from 'history';
|
import { Path } from 'history';
|
||||||
import * as inspectorThemes from '../../lib/themes';
|
import * as inspectorThemes from '@redux-devtools/inspector-monitor/lib/themes';
|
||||||
import getOptions, { Options } from './getOptions';
|
import getOptions, { Options } from './getOptions';
|
||||||
import {
|
import {
|
||||||
AddFunctionAction,
|
AddFunctionAction,
|
||||||
|
|
|
@ -3,9 +3,9 @@ import { connect } from 'react-redux';
|
||||||
import { createDevTools } from '@redux-devtools/core';
|
import { createDevTools } from '@redux-devtools/core';
|
||||||
import DockMonitor from '@redux-devtools/dock-monitor';
|
import DockMonitor from '@redux-devtools/dock-monitor';
|
||||||
import { Location } from 'history';
|
import { Location } from 'history';
|
||||||
import DevtoolsInspector from '../../lib/DevtoolsInspector';
|
import DevtoolsInspector from '@redux-devtools/inspector-monitor/lib/DevtoolsInspector';
|
||||||
import getOptions from './getOptions';
|
import getOptions from './getOptions';
|
||||||
import { base16Themes } from '../../lib/utils/createStylingFromTheme';
|
import { base16Themes } from '@redux-devtools/inspector-monitor/lib/utils/createStylingFromTheme';
|
||||||
import { DemoAppState } from './reducers';
|
import { DemoAppState } from './reducers';
|
||||||
|
|
||||||
const CustomComponent = () => (
|
const CustomComponent = () => (
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
import * as path from 'path';
|
import * as path from 'path';
|
||||||
import HtmlWebpackPlugin from 'html-webpack-plugin';
|
import HtmlWebpackPlugin from 'html-webpack-plugin';
|
||||||
import ForkTsCheckerWebpackPlugin from 'fork-ts-checker-webpack-plugin';
|
import ForkTsCheckerWebpackPlugin from 'fork-ts-checker-webpack-plugin';
|
||||||
import pkg from '../package.json';
|
import pkg from '@redux-devtools/inspector-monitor/package.json';
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
mode: 'development',
|
mode: 'development',
|
||||||
|
|
|
@ -17146,6 +17146,7 @@ fsevents@^1.2.7:
|
||||||
"@babel/preset-typescript": ^7.15.0
|
"@babel/preset-typescript": ^7.15.0
|
||||||
"@redux-devtools/core": ^3.9.0
|
"@redux-devtools/core": ^3.9.0
|
||||||
"@redux-devtools/dock-monitor": ^1.4.0
|
"@redux-devtools/dock-monitor": ^1.4.0
|
||||||
|
"@redux-devtools/inspector-monitor": ^1.0.0
|
||||||
"@types/base16": ^1.0.2
|
"@types/base16": ^1.0.2
|
||||||
"@types/history": ^4.7.9
|
"@types/history": ^4.7.9
|
||||||
"@types/lodash.shuffle": ^4.2.6
|
"@types/lodash.shuffle": ^4.2.6
|
||||||
|
|
Loading…
Reference in New Issue
Block a user