Merge branch 'main' into main

This commit is contained in:
Ovidiu Cristescu 2023-09-17 03:04:35 +03:00 committed by GitHub
commit 2a47b9d413
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
101 changed files with 3950 additions and 3756 deletions

View File

@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v4
with: with:
fetch-depth: 0 fetch-depth: 0
- uses: nrwl/nx-set-shas@v3 - uses: nrwl/nx-set-shas@v3

View File

@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout Repo - name: Checkout Repo
uses: actions/checkout@v3 uses: actions/checkout@v4
with: with:
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits # This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
fetch-depth: 0 fetch-depth: 0

View File

@ -3,15 +3,29 @@
"plugins": ["@typescript-eslint"], "plugins": ["@typescript-eslint"],
"extends": [ "extends": [
"eslint:recommended", "eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended", "plugin:@typescript-eslint/recommended-type-checked",
"plugin:@typescript-eslint/recommended", "plugin:@typescript-eslint/stylistic-type-checked",
"plugin:@typescript-eslint/recommended-requiring-type-checking",
"prettier" "prettier"
], ],
"rules": { "rules": {
"@typescript-eslint/no-unsafe-return": "off", "@typescript-eslint/no-unsafe-return": "off",
"@typescript-eslint/no-unsafe-assignment": "off", "@typescript-eslint/no-unsafe-assignment": "off",
"@typescript-eslint/no-unsafe-call": "off", "@typescript-eslint/no-unsafe-call": "off",
"@typescript-eslint/no-unsafe-member-access": "off" "@typescript-eslint/no-unsafe-member-access": "off",
"@typescript-eslint/prefer-optional-chain": "off",
"@typescript-eslint/no-base-to-string": "off",
"@typescript-eslint/consistent-indexed-object-style": "off",
"@typescript-eslint/prefer-nullish-coalescing": "off",
"@typescript-eslint/consistent-type-definitions": "off",
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/prefer-for-of": "off",
"@typescript-eslint/non-nullable-type-assertion-style": "off",
"@typescript-eslint/class-literal-property-style": "off",
"@typescript-eslint/no-redundant-type-constituents": "off",
"@typescript-eslint/prefer-string-starts-ends-with": "off",
"@typescript-eslint/no-duplicate-type-constituents": "off",
"@typescript-eslint/array-type": "off",
"@typescript-eslint/prefer-function-type": "off"
} }
} }

View File

@ -2,9 +2,8 @@
"plugins": ["jest"], "plugins": ["jest"],
"extends": [ "extends": [
"eslint:recommended", "eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended", "plugin:@typescript-eslint/recommended-type-checked",
"plugin:@typescript-eslint/recommended", "plugin:@typescript-eslint/stylistic-type-checked",
"plugin:@typescript-eslint/recommended-requiring-type-checking",
"plugin:jest/recommended", "plugin:jest/recommended",
"plugin:jest/style", "plugin:jest/style",
"prettier" "prettier"
@ -13,6 +12,21 @@
"@typescript-eslint/no-unsafe-return": "off", "@typescript-eslint/no-unsafe-return": "off",
"@typescript-eslint/no-unsafe-assignment": "off", "@typescript-eslint/no-unsafe-assignment": "off",
"@typescript-eslint/no-unsafe-call": "off", "@typescript-eslint/no-unsafe-call": "off",
"@typescript-eslint/no-unsafe-member-access": "off" "@typescript-eslint/no-unsafe-member-access": "off",
"@typescript-eslint/prefer-optional-chain": "off",
"@typescript-eslint/no-base-to-string": "off",
"@typescript-eslint/consistent-indexed-object-style": "off",
"@typescript-eslint/prefer-nullish-coalescing": "off",
"@typescript-eslint/consistent-type-definitions": "off",
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/prefer-for-of": "off",
"@typescript-eslint/non-nullable-type-assertion-style": "off",
"@typescript-eslint/class-literal-property-style": "off",
"@typescript-eslint/no-redundant-type-constituents": "off",
"@typescript-eslint/prefer-string-starts-ends-with": "off",
"@typescript-eslint/no-duplicate-type-constituents": "off",
"@typescript-eslint/array-type": "off",
"@typescript-eslint/prefer-function-type": "off"
} }
} }

View File

@ -8,9 +8,8 @@
"plugins": ["@typescript-eslint", "react"], "plugins": ["@typescript-eslint", "react"],
"extends": [ "extends": [
"eslint:recommended", "eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended", "plugin:@typescript-eslint/recommended-type-checked",
"plugin:@typescript-eslint/recommended", "plugin:@typescript-eslint/stylistic-type-checked",
"plugin:@typescript-eslint/recommended-requiring-type-checking",
"plugin:react/recommended", "plugin:react/recommended",
"plugin:react-hooks/recommended", "plugin:react-hooks/recommended",
"prettier" "prettier"
@ -32,6 +31,21 @@
"attributes": false "attributes": false
} }
} }
] ],
"@typescript-eslint/prefer-optional-chain": "off",
"@typescript-eslint/no-base-to-string": "off",
"@typescript-eslint/consistent-indexed-object-style": "off",
"@typescript-eslint/prefer-nullish-coalescing": "off",
"@typescript-eslint/consistent-type-definitions": "off",
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/prefer-for-of": "off",
"@typescript-eslint/non-nullable-type-assertion-style": "off",
"@typescript-eslint/class-literal-property-style": "off",
"@typescript-eslint/no-redundant-type-constituents": "off",
"@typescript-eslint/prefer-string-starts-ends-with": "off",
"@typescript-eslint/no-duplicate-type-constituents": "off",
"@typescript-eslint/array-type": "off",
"@typescript-eslint/prefer-function-type": "off"
} }
} }

View File

@ -2,9 +2,8 @@
"plugins": ["jest"], "plugins": ["jest"],
"extends": [ "extends": [
"eslint:recommended", "eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended", "plugin:@typescript-eslint/recommended-type-checked",
"plugin:@typescript-eslint/recommended", "plugin:@typescript-eslint/stylistic-type-checked",
"plugin:@typescript-eslint/recommended-requiring-type-checking",
"plugin:react/recommended", "plugin:react/recommended",
"plugin:react-hooks/recommended", "plugin:react-hooks/recommended",
"plugin:jest/recommended", "plugin:jest/recommended",
@ -15,6 +14,21 @@
"@typescript-eslint/no-unsafe-return": "off", "@typescript-eslint/no-unsafe-return": "off",
"@typescript-eslint/no-unsafe-assignment": "off", "@typescript-eslint/no-unsafe-assignment": "off",
"@typescript-eslint/no-unsafe-call": "off", "@typescript-eslint/no-unsafe-call": "off",
"@typescript-eslint/no-unsafe-member-access": "off" "@typescript-eslint/no-unsafe-member-access": "off",
"@typescript-eslint/prefer-optional-chain": "off",
"@typescript-eslint/no-base-to-string": "off",
"@typescript-eslint/consistent-indexed-object-style": "off",
"@typescript-eslint/prefer-nullish-coalescing": "off",
"@typescript-eslint/consistent-type-definitions": "off",
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/prefer-for-of": "off",
"@typescript-eslint/non-nullable-type-assertion-style": "off",
"@typescript-eslint/class-literal-property-style": "off",
"@typescript-eslint/no-redundant-type-constituents": "off",
"@typescript-eslint/prefer-string-starts-ends-with": "off",
"@typescript-eslint/no-duplicate-type-constituents": "off",
"@typescript-eslint/array-type": "off",
"@typescript-eslint/prefer-function-type": "off"
} }
} }

View File

@ -1,5 +1,25 @@
# remotedev-redux-devtools-extension # remotedev-redux-devtools-extension
## 3.1.3
### Patch Changes
- bca76009: Fix missing CSS for code editor
## 3.1.2
### Patch Changes
- 64ed81b0: Fix extension in Firefox and Chrome Incognito
## 3.1.1
### Patch Changes
- d18525b5: Increase min-width of popup
- Updated dependencies [57751ff9]
- @redux-devtools/app@3.0.0
## 3.1.0 ## 3.1.0
### Minor Changes ### Minor Changes

71
extension/build.mjs Normal file
View File

@ -0,0 +1,71 @@
import * as fs from 'node:fs';
import * as esbuild from 'esbuild';
import pug from 'pug';
const args = process.argv.slice(2);
const prod = !args.includes('--dev');
const commonEsbuildOptions = {
bundle: true,
logLevel: 'info',
outdir: 'dist',
minify: prod,
sourcemap: !prod,
define: {
'process.env.NODE_ENV': prod ? '"production"' : '"development"',
'process.env.BABEL_ENV': prod ? '"production"' : '"development"',
},
};
await esbuild.build({
...commonEsbuildOptions,
entryPoints: [
{ out: 'background.bundle', in: 'src/background/index.ts' },
{ out: 'options.bundle', in: 'src/options/index.tsx' },
{ out: 'window.bundle', in: 'src/window/index.tsx' },
{ out: 'remote.bundle', in: 'src/remote/index.tsx' },
{ out: 'devpanel.bundle', in: 'src/devpanel/index.tsx' },
{ out: 'devtools.bundle', in: 'src/devtools/index.ts' },
{ out: 'content.bundle', in: 'src/contentScript/index.ts' },
{ out: 'page.bundle', in: 'src/pageScript/index.ts' },
...(prod ? [] : [{ out: 'pagewrap.bundle', in: 'src/pageScriptWrap.ts' }]),
],
loader: {
'.woff2': 'file',
},
});
if (prod) {
await esbuild.build({
...commonEsbuildOptions,
entryPoints: [{ out: 'pagewrap.bundle', in: 'src/pageScriptWrap.ts' }],
loader: {
'.js': 'text',
},
});
}
console.log();
console.log('Creating HTML files...');
const htmlFiles = ['devpanel', 'devtools', 'options', 'remote', 'window'];
for (const htmlFile of htmlFiles) {
fs.writeFileSync(
`dist/${htmlFile}.html`,
pug.renderFile(`src/${htmlFile}/${htmlFile}.pug`),
);
}
console.log('Copying manifest.json...');
fs.copyFileSync('chrome/manifest.json', 'dist/manifest.json');
console.log('Copying assets...');
fs.cpSync('src/assets', 'dist', { recursive: true });
console.log('Copying dist for each browser...');
fs.cpSync('dist', 'chrome/dist', { recursive: true });
fs.copyFileSync('chrome/manifest.json', 'chrome/dist/manifest.json');
fs.cpSync('dist', 'edge/dist', { recursive: true });
fs.copyFileSync('edge/manifest.json', 'edge/dist/manifest.json');
fs.cpSync('dist', 'firefox/dist', { recursive: true });
fs.copyFileSync('firefox/manifest.json', 'firefox/dist/manifest.json');

View File

@ -1,5 +1,5 @@
{ {
"version": "3.1.0", "version": "3.1.3",
"name": "Redux DevTools", "name": "Redux DevTools",
"description": "Redux DevTools for debugging application's state changes.", "description": "Redux DevTools for debugging application's state changes.",
"homepage_url": "https://github.com/reduxjs/redux-devtools", "homepage_url": "https://github.com/reduxjs/redux-devtools",

View File

@ -1,5 +1,5 @@
{ {
"version": "3.1.0", "version": "3.1.3",
"name": "Redux DevTools", "name": "Redux DevTools",
"description": "Redux DevTools for debugging application's state changes.", "description": "Redux DevTools for debugging application's state changes.",
"homepage_url": "https://github.com/reduxjs/redux-devtools", "homepage_url": "https://github.com/reduxjs/redux-devtools",

View File

@ -1,5 +1,5 @@
{ {
"version": "3.1.0", "version": "3.1.3",
"name": "Redux DevTools", "name": "Redux DevTools",
"manifest_version": 2, "manifest_version": 2,
"description": "Redux Developer Tools for debugging application state changes.", "description": "Redux Developer Tools for debugging application state changes.",

View File

@ -1,7 +1,7 @@
{ {
"private": true, "private": true,
"name": "remotedev-redux-devtools-extension", "name": "remotedev-redux-devtools-extension",
"version": "3.1.0", "version": "3.1.3",
"description": "Redux Developer Tools for debugging application state changes.", "description": "Redux Developer Tools for debugging application state changes.",
"homepage": "https://github.com/reduxjs/redux-devtools/tree/master/extension", "homepage": "https://github.com/reduxjs/redux-devtools/tree/master/extension",
"license": "MIT", "license": "MIT",
@ -11,12 +11,8 @@
"url": "https://github.com/reduxjs/redux-devtools.git" "url": "https://github.com/reduxjs/redux-devtools.git"
}, },
"scripts": { "scripts": {
"start": "webpack --env development --watch", "build": "pnpm run build:extension && pnpm run type-check",
"build": "pnpm run build:extension && pnpm run build:chrome && pnpm run build:edge && pnpm run build:firefox", "build:extension": "node build.mjs",
"build:extension": "webpack --env production && webpack --config wrap.webpack.config.js",
"build:chrome": "cpy . ../chrome/dist --cwd dist && cpy manifest.json dist --cwd chrome",
"build:edge": "cpy . ../edge/dist --cwd dist && cpy manifest.json dist --cwd edge",
"build:firefox": "cpy . ../firefox/dist --cwd dist && cpy manifest.json dist --cwd firefox",
"build:examples": "babel-node examples/buildAll.js", "build:examples": "babel-node examples/buildAll.js",
"clean": "rimraf dist && rimraf chrome/dist && rimraf edge/dist && rimraf firefox/dist", "clean": "rimraf dist && rimraf chrome/dist && rimraf edge/dist && rimraf firefox/dist",
"test:app": "cross-env BABEL_ENV=test jest test/app", "test:app": "cross-env BABEL_ENV=test jest test/app",
@ -28,7 +24,7 @@
}, },
"dependencies": { "dependencies": {
"@babel/polyfill": "^7.12.1", "@babel/polyfill": "^7.12.1",
"@redux-devtools/app": "^2.2.2", "@redux-devtools/app": "^3.0.0",
"@redux-devtools/core": "^3.13.0", "@redux-devtools/core": "^3.13.0",
"@redux-devtools/instrument": "^2.1.0", "@redux-devtools/instrument": "^2.1.0",
"@redux-devtools/serialize": "^0.4.1", "@redux-devtools/serialize": "^0.4.1",
@ -50,47 +46,37 @@
"styled-components": "^5.3.11" "styled-components": "^5.3.11"
}, },
"devDependencies": { "devDependencies": {
"@babel/core": "^7.22.10", "@babel/core": "^7.22.11",
"@babel/preset-env": "^7.22.10", "@babel/preset-env": "^7.22.14",
"@babel/preset-react": "^7.22.5", "@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5", "@babel/preset-typescript": "^7.22.11",
"@babel/register": "^7.22.5", "@babel/register": "^7.22.5",
"@testing-library/jest-dom": "^6.0.1", "@testing-library/jest-dom": "^6.1.2",
"@testing-library/react": "^14.0.0", "@testing-library/react": "^14.0.0",
"@types/chrome": "^0.0.243", "@types/chrome": "^0.0.244",
"@types/lodash": "^4.14.197", "@types/lodash": "^4.14.197",
"@types/react": "^18.2.20", "@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7", "@types/react-dom": "^18.2.7",
"@types/styled-components": "^5.1.26", "@types/styled-components": "^5.1.26",
"babel-loader": "^9.1.3", "chromedriver": "^116.0.0",
"chromedriver114": "npm:chromedriver@^114.0.3",
"chromedriver115": "npm:chromedriver@^115.0.1",
"copy-webpack-plugin": "^11.0.0",
"cpy-cli": "^5.0.0",
"cross-env": "^7.0.3", "cross-env": "^7.0.3",
"css-loader": "^6.8.1", "electron": "^26.1.0",
"electron": "^25.6.0", "esbuild": "^0.19.2",
"eslint": "^8.47.0", "eslint": "^8.48.0",
"eslint-config-airbnb": "^19.0.4", "eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.28.1", "eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1", "eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.2", "eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0", "eslint-plugin-react-hooks": "^4.6.0",
"file-loader": "^6.2.0", "immutable": "^4.3.4",
"fork-ts-checker-webpack-plugin": "^8.0.0", "jest": "^29.6.4",
"immutable": "^4.3.2", "jest-environment-jsdom": "^29.6.4",
"jest": "^29.6.2", "pug": "^3.0.2",
"jest-environment-jsdom": "^29.6.2",
"pug-html-loader": "^1.1.5",
"raw-loader": "^4.0.2",
"react-transform-catch-errors": "^1.0.2",
"react-transform-hmr": "^1.0.4",
"rimraf": "^5.0.1", "rimraf": "^5.0.1",
"selenium-webdriver": "^4.11.1", "selenium-webdriver": "^4.12.0",
"sinon-chrome": "^3.0.1", "sinon-chrome": "^3.0.1",
"style-loader": "^3.3.3",
"ts-jest": "^29.1.1", "ts-jest": "^29.1.1",
"typescript": "~5.1.6", "typescript": "~5.2.2",
"webpack": "^5.88.2", "webpack": "^5.88.2",
"webpack-cli": "^5.1.4" "webpack-cli": "^5.1.4"
} }

View File

@ -1,3 +1,4 @@
import '../chromeApiMock';
import { Store } from 'redux'; import { Store } from 'redux';
import configureStore, { BackgroundAction } from './store/backgroundStore'; import configureStore, { BackgroundAction } from './store/backgroundStore';
import openDevToolsWindow, { DevToolsPosition } from './openWindow'; import openDevToolsWindow, { DevToolsPosition } from './openWindow';

View File

@ -1,3 +1,4 @@
import '../chromeApiMock';
import { import {
injectOptions, injectOptions,
getOptionsFromBg, getOptionsFromBg,

View File

@ -12,4 +12,5 @@ html
body body
#root #root
link(href='/devpanel.bundle.css', rel='stylesheet')
script(src='/devpanel.bundle.js') script(src='/devpanel.bundle.js')

View File

@ -1,3 +1,4 @@
import '../chromeApiMock';
import React, { CSSProperties, ReactNode } from 'react'; import React, { CSSProperties, ReactNode } from 'react';
import { createRoot, Root } from 'react-dom/client'; import { createRoot, Root } from 'react-dom/client';
import { Provider } from 'react-redux'; import { Provider } from 'react-redux';
@ -6,7 +7,6 @@ import { REMOVE_INSTANCE, StoreAction } from '@redux-devtools/app';
import App from '../app/App'; import App from '../app/App';
import configureStore from './store/panelStore'; import configureStore from './store/panelStore';
import './devpanel.pug';
import { Action, Store } from 'redux'; import { Action, Store } from 'redux';
import type { PanelMessage } from '../background/store/apiMiddleware'; import type { PanelMessage } from '../background/store/apiMiddleware';
import type { StoreStateWithoutSocket } from './store/panelReducer'; import type { StoreStateWithoutSocket } from './store/panelReducer';

View File

@ -12,6 +12,8 @@ import {
ReportsState, ReportsState,
section, section,
SectionState, SectionState,
StateTreeSettings,
stateTreeSettings,
StoreAction, StoreAction,
theme, theme,
ThemeState, ThemeState,
@ -25,6 +27,7 @@ export interface StoreStateWithoutSocket {
readonly instances: InstancesState; readonly instances: InstancesState;
readonly reports: ReportsState; readonly reports: ReportsState;
readonly notification: NotificationState; readonly notification: NotificationState;
readonly stateTreeSettings: StateTreeSettings;
} }
const rootReducer: Reducer<StoreStateWithoutSocket, StoreAction> = const rootReducer: Reducer<StoreStateWithoutSocket, StoreAction> =
@ -36,6 +39,7 @@ const rootReducer: Reducer<StoreStateWithoutSocket, StoreAction> =
section, section,
theme, theme,
connection, connection,
stateTreeSettings,
}); });
export default rootReducer; export default rootReducer;

View File

@ -1,5 +1,3 @@
import './devtools.pug';
function createPanel(url: string) { function createPanel(url: string) {
chrome.devtools.panels.create( chrome.devtools.panels.create(
'Redux', 'Redux',

View File

@ -1,10 +1,9 @@
import '../chromeApiMock';
import React from 'react'; import React from 'react';
import { createRoot } from 'react-dom/client'; import { createRoot } from 'react-dom/client';
import OptionsComponent from './Options'; import OptionsComponent from './Options';
import { Options } from './syncOptions'; import { Options } from './syncOptions';
import './options.pug';
chrome.runtime.getBackgroundPage((background) => { chrome.runtime.getBackgroundPage((background) => {
const syncOptions = background!.syncOptions; const syncOptions = background!.syncOptions;

View File

@ -1,8 +1,10 @@
// @ts-ignore
import script from '../dist/page.bundle.js';
let s = document.createElement('script'); let s = document.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
if (process.env.NODE_ENV === 'production') { if (process.env.NODE_ENV === 'production') {
const { default: script } = require('raw-loader!../dist/page.bundle.js');
s.appendChild(document.createTextNode(script)); s.appendChild(document.createTextNode(script));
(document.head || document.documentElement).appendChild(s); (document.head || document.documentElement).appendChild(s);
s.parentNode!.removeChild(s); s.parentNode!.removeChild(s);

View File

@ -2,8 +2,6 @@ import React from 'react';
import { createRoot } from 'react-dom/client'; import { createRoot } from 'react-dom/client';
import { Root } from '@redux-devtools/app'; import { Root } from '@redux-devtools/app';
import './remote.pug';
chrome.storage.local.get( chrome.storage.local.get(
{ {
'select-monitor': 'InspectorMonitor', 'select-monitor': 'InspectorMonitor',

View File

@ -8,4 +8,5 @@ html
body body
#root #root
link(href='/remote.bundle.css', rel='stylesheet')
script(src='/remote.bundle.js') script(src='/remote.bundle.js')

View File

@ -7,8 +7,6 @@ import App from '../app/App';
import configureStore from './store/windowStore'; import configureStore from './store/windowStore';
import type { MonitorMessage } from '../background/store/apiMiddleware'; import type { MonitorMessage } from '../background/store/apiMiddleware';
import './window.pug';
const position = location.hash; const position = location.hash;
chrome.runtime.getBackgroundPage((window) => { chrome.runtime.getBackgroundPage((window) => {
@ -35,4 +33,5 @@ chrome.runtime.getBackgroundPage((window) => {
); );
}); });
if (position === '#popup') document.body.style.minWidth = '760px';
if (position !== '#popup') document.body.style.minHeight = '100%'; if (position !== '#popup') document.body.style.minHeight = '100%';

View File

@ -14,4 +14,5 @@ html
height=300, width=350, height=300, width=350,
style='position: absolute; top: 50%; left: 50%; margin-top: -175px; margin-left: -175px;' style='position: absolute; top: 50%; left: 50%; margin-top: -175px; margin-left: -175px;'
) )
link(href='/window.bundle.css', rel='stylesheet')
script(src='/window.bundle.js') script(src='/window.bundle.js')

View File

@ -1,7 +1,7 @@
import { resolve } from 'path'; import { resolve } from 'path';
import webdriver from 'selenium-webdriver'; import webdriver from 'selenium-webdriver';
import chrome from 'selenium-webdriver/chrome'; import chrome from 'selenium-webdriver/chrome';
import chromedriver from 'chromedriver115'; import chromedriver from 'chromedriver';
import { switchMonitorTests, delay } from '../utils/e2e'; import { switchMonitorTests, delay } from '../utils/e2e';
const port = 9515; const port = 9515;

View File

@ -2,7 +2,7 @@ import { join } from 'path';
import webdriver from 'selenium-webdriver'; import webdriver from 'selenium-webdriver';
import chrome from 'selenium-webdriver/chrome'; import chrome from 'selenium-webdriver/chrome';
import electronPath from 'electron'; import electronPath from 'electron';
import chromedriver from 'chromedriver114'; import chromedriver from 'chromedriver';
import { switchMonitorTests, delay } from '../utils/e2e'; import { switchMonitorTests, delay } from '../utils/e2e';
const port = 9515; const port = 9515;

View File

@ -1,81 +0,0 @@
const path = require('path');
const webpack = require('webpack');
const CopyPlugin = require('copy-webpack-plugin');
const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin');
module.exports = function (env) {
return {
mode: env.production ? 'production' : 'development',
devtool: env.production ? undefined : 'eval-source-map',
entry: {
background: [
path.resolve(__dirname, 'src/chromeApiMock'),
path.resolve(__dirname, 'src/background/index'),
],
options: [
path.resolve(__dirname, 'src/chromeApiMock'),
path.resolve(__dirname, 'src/options/index'),
],
window: [path.resolve(__dirname, 'src/window/index')],
remote: [path.resolve(__dirname, 'src/remote/index')],
devpanel: [
path.resolve(__dirname, 'src/chromeApiMock'),
path.resolve(__dirname, 'src/devpanel/index'),
],
devtools: path.resolve(__dirname, 'src/devtools/index'),
content: [
path.resolve(__dirname, 'src/chromeApiMock'),
path.resolve(__dirname, 'src/contentScript/index'),
],
page: path.join(__dirname, 'src/pageScript'),
...(env.production
? {}
: { pagewrap: path.resolve(__dirname, 'src/pageScriptWrap') }),
},
output: {
filename: '[name].bundle.js',
},
plugins: [
new webpack.DefinePlugin({
'process.env.BABEL_ENV': JSON.stringify(process.env.NODE_ENV),
}),
new ForkTsCheckerWebpackPlugin({
typescript: {
configFile: 'tsconfig.json',
},
}),
new CopyPlugin({
patterns: [
{
from: path.join(__dirname, 'chrome/manifest.json'),
to: path.join(__dirname, 'dist/manifest.json'),
},
{
from: path.join(__dirname, 'src/assets'),
to: path.join(__dirname, 'dist'),
},
],
}),
],
resolve: {
extensions: ['.js', '.jsx', '.ts', '.tsx'],
},
module: {
rules: [
{
test: /\.(js|ts)x?$/,
use: 'babel-loader',
exclude: /node_modules/,
},
{
test: /\.css?$/,
use: ['style-loader', 'css-loader'],
},
{
test: /\.pug$/,
use: ['file-loader?name=[name].html', 'pug-html-loader'],
},
],
},
};
};

View File

@ -1,31 +0,0 @@
const path = require('path');
const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin');
module.exports = {
mode: 'production',
entry: {
pagewrap: path.resolve(__dirname, 'src/pageScriptWrap'),
},
output: {
filename: '[name].bundle.js',
},
plugins: [
new ForkTsCheckerWebpackPlugin({
typescript: {
configFile: 'tsconfig.json',
},
}),
],
resolve: {
extensions: ['.js', '.jsx', '.ts', '.tsx'],
},
module: {
rules: [
{
test: /\.(js|ts)x?$/,
use: 'babel-loader',
exclude: /(node_modules|dist\/page\.bundle)/,
},
],
},
};

View File

@ -1,20 +1,20 @@
{ {
"private": true, "private": true,
"devDependencies": { "devDependencies": {
"@babel/core": "^7.22.10", "@babel/core": "^7.22.11",
"@babel/eslint-parser": "^7.22.10", "@babel/eslint-parser": "^7.22.11",
"@changesets/cli": "^2.26.2", "@changesets/cli": "^2.26.2",
"@typescript-eslint/eslint-plugin": "^5.62.0", "@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^5.62.0", "@typescript-eslint/parser": "^6.5.0",
"eslint": "^8.47.0", "eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0", "eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^27.2.3", "eslint-plugin-jest": "^27.2.3",
"eslint-plugin-react": "^7.33.2", "eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0", "eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.6.2", "jest": "^29.6.4",
"prettier": "3.0.2", "prettier": "3.0.3",
"typescript": "~5.1.6", "typescript": "~5.2.2",
"nx": "^16.7.2", "nx": "^16.7.4",
"@nrwl/nx-cloud": "^16.3.0" "@nrwl/nx-cloud": "^16.3.0"
}, },
"scripts": { "scripts": {
@ -39,5 +39,5 @@
"packages/redux-devtools-rtk-query-monitor/demo", "packages/redux-devtools-rtk-query-monitor/demo",
"packages/redux-devtools-slider-monitor/examples/todomvc" "packages/redux-devtools-slider-monitor/examples/todomvc"
], ],
"packageManager": "pnpm@8.6.12" "packageManager": "pnpm@8.7.1"
} }

View File

@ -6,7 +6,7 @@ module.exports = {
extends: '../../eslintrc.ts.base.json', extends: '../../eslintrc.ts.base.json',
parserOptions: { parserOptions: {
tsconfigRootDir: __dirname, tsconfigRootDir: __dirname,
project: ['./tsconfig.json'], project: true,
}, },
}, },
], ],

View File

@ -2,7 +2,7 @@ module.exports = {
extends: '../../../../eslintrc.ts.base.json', extends: '../../../../eslintrc.ts.base.json',
parserOptions: { parserOptions: {
tsconfigRootDir: __dirname, tsconfigRootDir: __dirname,
project: ['./tsconfig.json'], project: true,
}, },
overrides: [ overrides: [
{ {

View File

@ -29,20 +29,20 @@
"map2tree": "^3.0.0" "map2tree": "^3.0.0"
}, },
"devDependencies": { "devDependencies": {
"@babel/core": "^7.22.10", "@babel/core": "^7.22.11",
"@babel/preset-env": "^7.22.10", "@babel/preset-env": "^7.22.14",
"@babel/preset-typescript": "^7.22.5", "@babel/preset-typescript": "^7.22.11",
"@types/node": "^18.17.6", "@types/node": "^18.17.14",
"@typescript-eslint/eslint-plugin": "^5.62.0", "@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^5.62.0", "@typescript-eslint/parser": "^6.5.0",
"babel-loader": "^9.1.3", "babel-loader": "^9.1.3",
"cross-env": "^7.0.3", "cross-env": "^7.0.3",
"eslint": "^8.47.0", "eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0", "eslint-config-prettier": "^9.0.0",
"fork-ts-checker-webpack-plugin": "^8.0.0", "fork-ts-checker-webpack-plugin": "^8.0.0",
"html-webpack-plugin": "^5.5.3", "html-webpack-plugin": "^5.5.3",
"ts-node": "^10.9.1", "ts-node": "^10.9.1",
"typescript": "~5.1.6", "typescript": "~5.2.2",
"webpack": "^5.88.2", "webpack": "^5.88.2",
"webpack-cli": "^5.1.4", "webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1" "webpack-dev-server": "^4.15.1"

View File

@ -40,7 +40,7 @@
"prepublish": "pnpm run type-check && pnpm run lint" "prepublish": "pnpm run type-check && pnpm run lint"
}, },
"dependencies": { "dependencies": {
"@babel/runtime": "^7.22.10", "@babel/runtime": "^7.22.11",
"@types/d3": "^7.4.0", "@types/d3": "^7.4.0",
"d3": "^7.8.5", "d3": "^7.8.5",
"d3tooltip": "^3.0.0", "d3tooltip": "^3.0.0",
@ -50,16 +50,16 @@
}, },
"devDependencies": { "devDependencies": {
"@babel/cli": "^7.22.10", "@babel/cli": "^7.22.10",
"@babel/core": "^7.22.10", "@babel/core": "^7.22.11",
"@babel/eslint-parser": "^7.22.10", "@babel/eslint-parser": "^7.22.11",
"@babel/preset-env": "^7.22.10", "@babel/preset-env": "^7.22.14",
"@babel/preset-typescript": "^7.22.5", "@babel/preset-typescript": "^7.22.11",
"@types/ramda": "^0.29.3", "@types/ramda": "^0.29.3",
"@typescript-eslint/eslint-plugin": "^5.62.0", "@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^5.62.0", "@typescript-eslint/parser": "^6.5.0",
"eslint": "^8.47.0", "eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0", "eslint-config-prettier": "^9.0.0",
"rimraf": "^5.0.1", "rimraf": "^5.0.1",
"typescript": "~5.1.6" "typescript": "~5.2.2"
} }
} }

View File

@ -6,7 +6,7 @@ module.exports = {
extends: '../../eslintrc.ts.base.json', extends: '../../eslintrc.ts.base.json',
parserOptions: { parserOptions: {
tsconfigRootDir: __dirname, tsconfigRootDir: __dirname,
project: ['./tsconfig.json'], project: true,
}, },
}, },
], ],

View File

@ -36,22 +36,22 @@
"prepublish": "pnpm run type-check && pnpm run lint" "prepublish": "pnpm run type-check && pnpm run lint"
}, },
"dependencies": { "dependencies": {
"@babel/runtime": "^7.22.10" "@babel/runtime": "^7.22.11"
}, },
"devDependencies": { "devDependencies": {
"@babel/cli": "^7.22.10", "@babel/cli": "^7.22.10",
"@babel/core": "^7.22.10", "@babel/core": "^7.22.11",
"@babel/eslint-parser": "^7.22.10", "@babel/eslint-parser": "^7.22.11",
"@babel/preset-env": "^7.22.10", "@babel/preset-env": "^7.22.14",
"@babel/preset-typescript": "^7.22.5", "@babel/preset-typescript": "^7.22.11",
"@types/d3": "^7.4.0", "@types/d3": "^7.4.0",
"@typescript-eslint/eslint-plugin": "^5.62.0", "@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^5.62.0", "@typescript-eslint/parser": "^6.5.0",
"d3": "^7.8.5", "d3": "^7.8.5",
"eslint": "^8.47.0", "eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0", "eslint-config-prettier": "^9.0.0",
"rimraf": "^5.0.1", "rimraf": "^5.0.1",
"typescript": "~5.1.6" "typescript": "~5.2.2"
}, },
"peerDependencies": { "peerDependencies": {
"@types/d3": "^7.4.0", "@types/d3": "^7.4.0",

View File

@ -6,7 +6,7 @@ module.exports = {
extends: '../../eslintrc.ts.jest.base.json', extends: '../../eslintrc.ts.jest.base.json',
parserOptions: { parserOptions: {
tsconfigRootDir: __dirname, tsconfigRootDir: __dirname,
project: ['./tsconfig.json'], project: true,
}, },
}, },
{ {

View File

@ -40,26 +40,26 @@
"prepublish": "pnpm run type-check && pnpm run lint && pnpm run test" "prepublish": "pnpm run type-check && pnpm run lint && pnpm run test"
}, },
"dependencies": { "dependencies": {
"@babel/runtime": "^7.22.10", "@babel/runtime": "^7.22.11",
"lodash": "^4.17.21" "lodash": "^4.17.21"
}, },
"devDependencies": { "devDependencies": {
"@babel/cli": "^7.22.10", "@babel/cli": "^7.22.10",
"@babel/core": "^7.22.10", "@babel/core": "^7.22.11",
"@babel/eslint-parser": "^7.22.10", "@babel/eslint-parser": "^7.22.11",
"@babel/preset-env": "^7.22.10", "@babel/preset-env": "^7.22.14",
"@babel/preset-typescript": "^7.22.5", "@babel/preset-typescript": "^7.22.11",
"@types/jest": "^29.5.3", "@types/jest": "^29.5.4",
"@types/lodash": "^4.14.197", "@types/lodash": "^4.14.197",
"@typescript-eslint/eslint-plugin": "^5.62.0", "@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^5.62.0", "@typescript-eslint/parser": "^6.5.0",
"eslint": "^8.47.0", "eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0", "eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^27.2.3", "eslint-plugin-jest": "^27.2.3",
"immutable": "^4.3.2", "immutable": "^4.3.4",
"jest": "^29.6.2", "jest": "^29.6.4",
"rimraf": "^5.0.1", "rimraf": "^5.0.1",
"ts-jest": "^29.1.1", "ts-jest": "^29.1.1",
"typescript": "~5.1.6" "typescript": "~5.2.2"
} }
} }

View File

@ -6,7 +6,7 @@ module.exports = {
extends: '../../eslintrc.ts.jest.base.json', extends: '../../eslintrc.ts.jest.base.json',
parserOptions: { parserOptions: {
tsconfigRootDir: __dirname, tsconfigRootDir: __dirname,
project: ['./tsconfig.json'], project: true,
}, },
}, },
{ {

View File

@ -39,7 +39,7 @@
"prepublish": "pnpm run type-check && pnpm run lint && pnpm run test" "prepublish": "pnpm run type-check && pnpm run lint && pnpm run test"
}, },
"dependencies": { "dependencies": {
"@babel/runtime": "^7.22.10", "@babel/runtime": "^7.22.11",
"@types/base16": "^1.0.2", "@types/base16": "^1.0.2",
"@types/lodash": "^4.14.197", "@types/lodash": "^4.14.197",
"base16": "^1.0.0", "base16": "^1.0.0",
@ -49,23 +49,23 @@
}, },
"devDependencies": { "devDependencies": {
"@babel/cli": "^7.22.10", "@babel/cli": "^7.22.10",
"@babel/core": "^7.22.10", "@babel/core": "^7.22.11",
"@babel/eslint-parser": "^7.22.10", "@babel/eslint-parser": "^7.22.11",
"@babel/plugin-transform-runtime": "^7.22.10", "@babel/plugin-transform-runtime": "^7.22.10",
"@babel/preset-env": "^7.22.10", "@babel/preset-env": "^7.22.14",
"@babel/preset-typescript": "^7.22.5", "@babel/preset-typescript": "^7.22.11",
"@types/color": "^3.0.3", "@types/color": "^3.0.3",
"@types/jest": "^29.5.3", "@types/jest": "^29.5.4",
"@types/lodash.curry": "^4.1.7", "@types/lodash.curry": "^4.1.7",
"@typescript-eslint/eslint-plugin": "^5.62.0", "@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^5.62.0", "@typescript-eslint/parser": "^6.5.0",
"eslint": "^8.47.0", "eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0", "eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^27.2.3", "eslint-plugin-jest": "^27.2.3",
"jest": "^29.6.2", "jest": "^29.6.4",
"jest-environment-jsdom": "^29.6.2", "jest-environment-jsdom": "^29.6.4",
"rimraf": "^5.0.1", "rimraf": "^5.0.1",
"ts-jest": "^29.1.1", "ts-jest": "^29.1.1",
"typescript": "~5.1.6" "typescript": "~5.2.2"
} }
} }

View File

@ -6,7 +6,7 @@ module.exports = {
extends: '../../eslintrc.ts.react.base.json', extends: '../../eslintrc.ts.react.base.json',
parserOptions: { parserOptions: {
tsconfigRootDir: __dirname, tsconfigRootDir: __dirname,
project: ['./tsconfig.json'], project: true,
}, },
}, },
{ {

View File

@ -2,7 +2,7 @@ module.exports = {
extends: '../../../eslintrc.ts.react.base.json', extends: '../../../eslintrc.ts.react.base.json',
parserOptions: { parserOptions: {
tsconfigRootDir: __dirname, tsconfigRootDir: __dirname,
project: ['./tsconfig.json'], project: true,
}, },
overrides: [ overrides: [
{ {

View File

@ -19,26 +19,26 @@
"styled-components": "^5.3.11" "styled-components": "^5.3.11"
}, },
"devDependencies": { "devDependencies": {
"@babel/core": "^7.22.10", "@babel/core": "^7.22.11",
"@babel/preset-env": "^7.22.10", "@babel/preset-env": "^7.22.14",
"@babel/preset-react": "^7.22.5", "@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5", "@babel/preset-typescript": "^7.22.11",
"@types/node": "^18.17.6", "@types/node": "^18.17.14",
"@types/react": "^18.2.20", "@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7", "@types/react-dom": "^18.2.7",
"@types/styled-components": "^5.1.26", "@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.62.0", "@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^5.62.0", "@typescript-eslint/parser": "^6.5.0",
"babel-loader": "^9.1.3", "babel-loader": "^9.1.3",
"cross-env": "^7.0.3", "cross-env": "^7.0.3",
"eslint": "^8.47.0", "eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0", "eslint-config-prettier": "^9.0.0",
"eslint-plugin-react": "^7.33.2", "eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0", "eslint-plugin-react-hooks": "^4.6.0",
"fork-ts-checker-webpack-plugin": "^8.0.0", "fork-ts-checker-webpack-plugin": "^8.0.0",
"html-webpack-plugin": "^5.5.3", "html-webpack-plugin": "^5.5.3",
"ts-node": "^10.9.1", "ts-node": "^10.9.1",
"typescript": "~5.1.6", "typescript": "~5.2.2",
"webpack": "^5.88.2", "webpack": "^5.88.2",
"webpack-cli": "^5.1.4", "webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1" "webpack-dev-server": "^4.15.1"

View File

@ -39,7 +39,7 @@
"prepublish": "pnpm run type-check && pnpm run lint && pnpm run test" "prepublish": "pnpm run type-check && pnpm run lint && pnpm run test"
}, },
"dependencies": { "dependencies": {
"@babel/runtime": "^7.22.10", "@babel/runtime": "^7.22.11",
"@types/lodash": "^4.14.197", "@types/lodash": "^4.14.197",
"@types/prop-types": "^15.7.5", "@types/prop-types": "^15.7.5",
"lodash.debounce": "^4.0.8", "lodash.debounce": "^4.0.8",
@ -47,30 +47,30 @@
}, },
"devDependencies": { "devDependencies": {
"@babel/cli": "^7.22.10", "@babel/cli": "^7.22.10",
"@babel/core": "^7.22.10", "@babel/core": "^7.22.11",
"@babel/eslint-parser": "^7.22.10", "@babel/eslint-parser": "^7.22.11",
"@babel/plugin-transform-runtime": "^7.22.10", "@babel/plugin-transform-runtime": "^7.22.10",
"@babel/preset-env": "^7.22.10", "@babel/preset-env": "^7.22.14",
"@babel/preset-react": "^7.22.5", "@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5", "@babel/preset-typescript": "^7.22.11",
"@types/jest": "^29.5.3", "@types/jest": "^29.5.4",
"@types/lodash.debounce": "^4.0.7", "@types/lodash.debounce": "^4.0.7",
"@types/react": "^18.2.20", "@types/react": "^18.2.21",
"@types/react-test-renderer": "^18.0.0", "@types/react-test-renderer": "^18.0.1",
"@typescript-eslint/eslint-plugin": "^5.62.0", "@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^5.62.0", "@typescript-eslint/parser": "^6.5.0",
"eslint": "^8.47.0", "eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0", "eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^27.2.3", "eslint-plugin-jest": "^27.2.3",
"eslint-plugin-react": "^7.33.2", "eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0", "eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.6.2", "jest": "^29.6.4",
"jest-environment-jsdom": "^29.6.2", "jest-environment-jsdom": "^29.6.4",
"react": "^18.2.0", "react": "^18.2.0",
"react-test-renderer": "^18.2.0", "react-test-renderer": "^18.2.0",
"rimraf": "^5.0.1", "rimraf": "^5.0.1",
"ts-jest": "^29.1.1", "ts-jest": "^29.1.1",
"typescript": "~5.1.6" "typescript": "~5.2.2"
}, },
"peerDependencies": { "peerDependencies": {
"@types/react": "^16.3.0 || ^17.0.0 || ^18.0.0", "@types/react": "^16.3.0 || ^17.0.0 || ^18.0.0",

View File

@ -6,7 +6,7 @@ module.exports = {
extends: '../../eslintrc.ts.react.base.json', extends: '../../eslintrc.ts.react.base.json',
parserOptions: { parserOptions: {
tsconfigRootDir: __dirname, tsconfigRootDir: __dirname,
project: ['./tsconfig.json'], project: true,
}, },
}, },
{ {

View File

@ -2,7 +2,7 @@ module.exports = {
extends: '../../../eslintrc.ts.react.base.json', extends: '../../../eslintrc.ts.react.base.json',
parserOptions: { parserOptions: {
tsconfigRootDir: __dirname, tsconfigRootDir: __dirname,
project: ['./tsconfig.json'], project: true,
}, },
overrides: [ overrides: [
{ {

View File

@ -19,32 +19,32 @@
"type-check": "tsc --noEmit" "type-check": "tsc --noEmit"
}, },
"dependencies": { "dependencies": {
"immutable": "^4.3.2", "immutable": "^4.3.4",
"react": "^18.2.0", "react": "^18.2.0",
"react-base16-styling": "^0.9.1", "react-base16-styling": "^0.9.1",
"react-dom": "^18.2.0", "react-dom": "^18.2.0",
"react-json-tree": "^0.18.0" "react-json-tree": "^0.18.0"
}, },
"devDependencies": { "devDependencies": {
"@babel/core": "^7.22.10", "@babel/core": "^7.22.11",
"@babel/preset-env": "^7.22.10", "@babel/preset-env": "^7.22.14",
"@babel/preset-react": "^7.22.5", "@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5", "@babel/preset-typescript": "^7.22.11",
"@types/node": "^18.17.6", "@types/node": "^18.17.14",
"@types/react": "^18.2.20", "@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7", "@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^5.62.0", "@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^5.62.0", "@typescript-eslint/parser": "^6.5.0",
"babel-loader": "^9.1.3", "babel-loader": "^9.1.3",
"cross-env": "^7.0.3", "cross-env": "^7.0.3",
"eslint": "^8.47.0", "eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0", "eslint-config-prettier": "^9.0.0",
"eslint-plugin-react": "^7.33.2", "eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0", "eslint-plugin-react-hooks": "^4.6.0",
"fork-ts-checker-webpack-plugin": "^8.0.0", "fork-ts-checker-webpack-plugin": "^8.0.0",
"html-webpack-plugin": "^5.5.3", "html-webpack-plugin": "^5.5.3",
"ts-node": "^10.9.1", "ts-node": "^10.9.1",
"typescript": "~5.1.6", "typescript": "~5.2.2",
"webpack": "^5.88.2", "webpack": "^5.88.2",
"webpack-cli": "^5.1.4", "webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1" "webpack-dev-server": "^4.15.1"

View File

@ -45,42 +45,42 @@
"prepublish": "pnpm run type-check && pnpm run lint && pnpm run test" "prepublish": "pnpm run type-check && pnpm run lint && pnpm run test"
}, },
"dependencies": { "dependencies": {
"@babel/runtime": "^7.22.10", "@babel/runtime": "^7.22.11",
"@types/lodash": "^4.14.197", "@types/lodash": "^4.14.197",
"react-base16-styling": "^0.9.1" "react-base16-styling": "^0.9.1"
}, },
"devDependencies": { "devDependencies": {
"@babel/cli": "^7.22.10", "@babel/cli": "^7.22.10",
"@babel/core": "^7.22.10", "@babel/core": "^7.22.11",
"@babel/eslint-parser": "^7.22.10", "@babel/eslint-parser": "^7.22.11",
"@babel/plugin-transform-runtime": "^7.22.10", "@babel/plugin-transform-runtime": "^7.22.10",
"@babel/preset-env": "^7.22.10", "@babel/preset-env": "^7.22.14",
"@babel/preset-react": "^7.22.5", "@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5", "@babel/preset-typescript": "^7.22.11",
"@rollup/plugin-babel": "^6.0.3", "@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^25.0.4", "@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-node-resolve": "^15.2.0", "@rollup/plugin-node-resolve": "^15.2.1",
"@rollup/plugin-terser": "^0.4.3", "@rollup/plugin-terser": "^0.4.3",
"@types/jest": "^29.5.3", "@types/jest": "^29.5.4",
"@types/node": "^18.17.6", "@types/node": "^18.17.14",
"@types/react": "^18.2.20", "@types/react": "^18.2.21",
"@types/react-test-renderer": "^18.0.0", "@types/react-test-renderer": "^18.0.1",
"@typescript-eslint/eslint-plugin": "^5.62.0", "@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^5.62.0", "@typescript-eslint/parser": "^6.5.0",
"eslint": "^8.47.0", "eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0", "eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^27.2.3", "eslint-plugin-jest": "^27.2.3",
"eslint-plugin-react": "^7.33.2", "eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0", "eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.6.2", "jest": "^29.6.4",
"react": "^18.2.0", "react": "^18.2.0",
"react-test-renderer": "^18.2.0", "react-test-renderer": "^18.2.0",
"rimraf": "^5.0.1", "rimraf": "^5.0.1",
"rollup": "^3.28.0", "rollup": "^3.28.1",
"rollup-plugin-typescript2": "^0.35.0", "rollup-plugin-typescript2": "^0.35.0",
"ts-jest": "^29.1.1", "ts-jest": "^29.1.1",
"tslib": "^2.6.2", "tslib": "^2.6.2",
"typescript": "~5.1.6" "typescript": "~5.2.2"
}, },
"peerDependencies": { "peerDependencies": {
"@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0", "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0",

View File

@ -6,7 +6,7 @@ module.exports = {
extends: '../../eslintrc.ts.react.base.json', extends: '../../eslintrc.ts.react.base.json',
parserOptions: { parserOptions: {
tsconfigRootDir: __dirname, tsconfigRootDir: __dirname,
project: ['./tsconfig.json'], project: true,
}, },
}, },
{ {

View File

@ -1,5 +1,18 @@
# Change Log # Change Log
## 3.0.0
### Major Changes
- 57751ff9: Add react-dom peerDependency and bump react peerDependency to `^16.8.0 || ^17.0.0 || ^18.0.0`
### Patch Changes
- Updated dependencies [57751ff9]
- @redux-devtools/inspector-monitor-test-tab@2.0.0
- @redux-devtools/inspector-monitor-trace-tab@2.0.0
- @redux-devtools/inspector-monitor@4.0.0
## 2.2.3 ## 2.2.3
### Patch Changes ### Patch Changes

View File

@ -1,6 +1,6 @@
{ {
"name": "@redux-devtools/app", "name": "@redux-devtools/app",
"version": "2.2.3", "version": "3.0.0",
"description": "Redux DevTools app", "description": "Redux DevTools app",
"homepage": "https://github.com/reduxjs/redux-devtools/tree/master/packages/redux-devtools-app", "homepage": "https://github.com/reduxjs/redux-devtools/tree/master/packages/redux-devtools-app",
"bugs": { "bugs": {
@ -40,12 +40,12 @@
"prepublish": "pnpm run type-check && pnpm run lint && pnpm run test" "prepublish": "pnpm run type-check && pnpm run lint && pnpm run test"
}, },
"dependencies": { "dependencies": {
"@babel/runtime": "^7.22.10", "@babel/runtime": "^7.22.11",
"@redux-devtools/chart-monitor": "^4.0.0", "@redux-devtools/chart-monitor": "^4.0.0",
"@redux-devtools/core": "^3.13.0", "@redux-devtools/core": "^3.13.0",
"@redux-devtools/inspector-monitor": "^3.1.1", "@redux-devtools/inspector-monitor": "^4.0.0",
"@redux-devtools/inspector-monitor-test-tab": "^1.0.1", "@redux-devtools/inspector-monitor-test-tab": "^2.0.0",
"@redux-devtools/inspector-monitor-trace-tab": "^1.0.1", "@redux-devtools/inspector-monitor-trace-tab": "^2.0.0",
"@redux-devtools/log-monitor": "^4.0.2", "@redux-devtools/log-monitor": "^4.0.2",
"@redux-devtools/rtk-query-monitor": "^3.1.1", "@redux-devtools/rtk-query-monitor": "^3.1.1",
"@redux-devtools/slider-monitor": "^4.0.0", "@redux-devtools/slider-monitor": "^4.0.0",
@ -68,32 +68,32 @@
}, },
"devDependencies": { "devDependencies": {
"@babel/cli": "^7.22.10", "@babel/cli": "^7.22.10",
"@babel/core": "^7.22.10", "@babel/core": "^7.22.11",
"@babel/eslint-parser": "^7.22.10", "@babel/eslint-parser": "^7.22.11",
"@babel/plugin-transform-runtime": "^7.22.10", "@babel/plugin-transform-runtime": "^7.22.10",
"@babel/preset-env": "^7.22.10", "@babel/preset-env": "^7.22.14",
"@babel/preset-react": "^7.22.5", "@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5", "@babel/preset-typescript": "^7.22.11",
"@rjsf/core": "^4.2.3", "@rjsf/core": "^4.2.3",
"@testing-library/jest-dom": "^6.0.1", "@testing-library/jest-dom": "^6.1.2",
"@testing-library/react": "^14.0.0", "@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.3", "@types/jest": "^29.5.4",
"@types/jsan": "^3.1.2", "@types/jsan": "^3.1.2",
"@types/json-schema": "^7.0.12", "@types/json-schema": "^7.0.12",
"@types/lodash": "^4.14.197", "@types/lodash": "^4.14.197",
"@types/node": "^18.17.6", "@types/node": "^18.17.14",
"@types/react": "^18.2.20", "@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7", "@types/react-dom": "^18.2.7",
"@types/socketcluster-client": "^16.0.0", "@types/socketcluster-client": "^16.0.0",
"@types/styled-components": "^5.1.26", "@types/styled-components": "^5.1.26",
"@types/testing-library__jest-dom": "^5.14.9", "@types/testing-library__jest-dom": "^5.14.9",
"@types/webpack-env": "^1.18.1", "@types/webpack-env": "^1.18.1",
"@typescript-eslint/eslint-plugin": "^5.62.0", "@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^5.62.0", "@typescript-eslint/parser": "^6.5.0",
"babel-loader": "^9.1.3", "babel-loader": "^9.1.3",
"cross-env": "^7.0.3", "cross-env": "^7.0.3",
"css-loader": "^6.8.1", "css-loader": "^6.8.1",
"eslint": "^8.47.0", "eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0", "eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^27.2.3", "eslint-plugin-jest": "^27.2.3",
"eslint-plugin-react": "^7.33.2", "eslint-plugin-react": "^7.33.2",
@ -101,8 +101,8 @@
"fork-ts-checker-webpack-plugin": "^8.0.0", "fork-ts-checker-webpack-plugin": "^8.0.0",
"html-loader": "^4.2.0", "html-loader": "^4.2.0",
"html-webpack-plugin": "^5.5.3", "html-webpack-plugin": "^5.5.3",
"jest": "^29.6.2", "jest": "^29.6.4",
"jest-environment-jsdom": "^29.6.2", "jest-environment-jsdom": "^29.6.4",
"react": "^18.2.0", "react": "^18.2.0",
"react-dom": "^18.2.0", "react-dom": "^18.2.0",
"rimraf": "^5.0.1", "rimraf": "^5.0.1",
@ -110,15 +110,16 @@
"styled-components": "^5.3.11", "styled-components": "^5.3.11",
"ts-jest": "^29.1.1", "ts-jest": "^29.1.1",
"ts-node": "^10.9.1", "ts-node": "^10.9.1",
"typescript": "~5.1.6", "typescript": "~5.2.2",
"webpack": "^5.88.2", "webpack": "^5.88.2",
"webpack-cli": "^5.1.4", "webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1" "webpack-dev-server": "^4.15.1"
}, },
"peerDependencies": { "peerDependencies": {
"@types/react": "^16.3.0 || ^17.0.0 || ^18.0.0", "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"@types/styled-components": "^5.1.26", "@types/styled-components": "^5.1.26",
"react": "^16.3.0 || ^17.0.0 || ^18.0.0", "react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0",
"styled-components": "^5.3.11" "styled-components": "^5.3.11"
} }
} }

View File

@ -6,7 +6,7 @@ module.exports = {
extends: '../../eslintrc.ts.react.base.json', extends: '../../eslintrc.ts.react.base.json',
parserOptions: { parserOptions: {
tsconfigRootDir: __dirname, tsconfigRootDir: __dirname,
project: ['./tsconfig.json'], project: true,
}, },
}, },
], ],

View File

@ -39,7 +39,7 @@
"prepublish": "pnpm run type-check && pnpm run lint" "prepublish": "pnpm run type-check && pnpm run lint"
}, },
"dependencies": { "dependencies": {
"@babel/runtime": "^7.22.10", "@babel/runtime": "^7.22.11",
"@types/redux-devtools-themes": "^1.0.0", "@types/redux-devtools-themes": "^1.0.0",
"d3-state-visualizer": "^2.0.0", "d3-state-visualizer": "^2.0.0",
"deepmerge": "^4.3.1", "deepmerge": "^4.3.1",
@ -47,24 +47,24 @@
}, },
"devDependencies": { "devDependencies": {
"@babel/cli": "^7.22.10", "@babel/cli": "^7.22.10",
"@babel/core": "^7.22.10", "@babel/core": "^7.22.11",
"@babel/eslint-parser": "^7.22.10", "@babel/eslint-parser": "^7.22.11",
"@babel/plugin-transform-runtime": "^7.22.10", "@babel/plugin-transform-runtime": "^7.22.10",
"@babel/preset-env": "^7.22.10", "@babel/preset-env": "^7.22.14",
"@babel/preset-react": "^7.22.5", "@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5", "@babel/preset-typescript": "^7.22.11",
"@redux-devtools/core": "^3.13.1", "@redux-devtools/core": "^3.13.1",
"@types/react": "^18.2.20", "@types/react": "^18.2.21",
"@typescript-eslint/eslint-plugin": "^5.62.0", "@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^5.62.0", "@typescript-eslint/parser": "^6.5.0",
"eslint": "^8.47.0", "eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0", "eslint-config-prettier": "^9.0.0",
"eslint-plugin-react": "^7.33.2", "eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0", "eslint-plugin-react-hooks": "^4.6.0",
"react": "^18.2.0", "react": "^18.2.0",
"redux": "^4.2.1", "redux": "^4.2.1",
"rimraf": "^5.0.1", "rimraf": "^5.0.1",
"typescript": "~5.1.6" "typescript": "~5.2.2"
}, },
"peerDependencies": { "peerDependencies": {
"@redux-devtools/core": "^3.13.1", "@redux-devtools/core": "^3.13.1",

View File

@ -5,7 +5,7 @@ module.exports = {
extends: '../../eslintrc.ts.base.json', extends: '../../eslintrc.ts.base.json',
parserOptions: { parserOptions: {
tsconfigRootDir: __dirname, tsconfigRootDir: __dirname,
project: ['./tsconfig.json'], project: true,
}, },
}, },
{ {

View File

@ -1,5 +1,12 @@
# Change Log # Change Log
## 3.0.1
### Patch Changes
- Updated dependencies [57751ff9]
- @redux-devtools/app@3.0.0
## 3.0.0 ## 3.0.0
### Major Changes ### Major Changes

View File

@ -1,6 +1,6 @@
{ {
"name": "@redux-devtools/cli", "name": "@redux-devtools/cli",
"version": "3.0.0", "version": "3.0.1",
"description": "CLI for remote debugging with Redux DevTools.", "description": "CLI for remote debugging with Redux DevTools.",
"homepage": "https://github.com/reduxjs/redux-devtools/tree/master/packages/redux-devtools-cli", "homepage": "https://github.com/reduxjs/redux-devtools/tree/master/packages/redux-devtools-cli",
"bugs": { "bugs": {
@ -41,14 +41,14 @@
"node": "^16.13.0 || >= 18.12.0" "node": "^16.13.0 || >= 18.12.0"
}, },
"dependencies": { "dependencies": {
"@apollo/server": "^4.9.1", "@apollo/server": "^4.9.3",
"@redux-devtools/app": "^2.2.2", "@redux-devtools/app": "^3.0.0",
"@types/react": "^18.2.20", "@types/react": "^18.2.21",
"body-parser": "^1.20.2", "body-parser": "^1.20.2",
"chalk": "^5.3.0", "chalk": "^5.3.0",
"cors": "^2.8.5", "cors": "^2.8.5",
"cross-spawn": "^7.0.3", "cross-spawn": "^7.0.3",
"electron": "^25.6.0", "electron": "^26.1.0",
"express": "^4.18.2", "express": "^4.18.2",
"get-port": "^7.0.0", "get-port": "^7.0.0",
"graphql": "^16.8.0", "graphql": "^16.8.0",
@ -71,28 +71,28 @@
"@types/cors": "^2.8.13", "@types/cors": "^2.8.13",
"@types/cross-spawn": "^6.0.2", "@types/cross-spawn": "^6.0.2",
"@types/express": "^4.17.17", "@types/express": "^4.17.17",
"@types/jest": "^29.5.3", "@types/jest": "^29.5.4",
"@types/lodash-es": "^4.17.8", "@types/lodash-es": "^4.17.9",
"@types/minimist": "^1.2.2", "@types/minimist": "^1.2.2",
"@types/morgan": "^1.9.4", "@types/morgan": "^1.9.5",
"@types/node": "^18.17.6", "@types/node": "^18.17.14",
"@types/semver": "^7.5.0", "@types/semver": "^7.5.1",
"@types/socketcluster-client": "^16.0.0", "@types/socketcluster-client": "^16.0.0",
"@types/socketcluster-server": "^17.3.0", "@types/socketcluster-server": "^17.3.0",
"@types/styled-components": "^5.1.26", "@types/styled-components": "^5.1.26",
"@types/supertest": "^2.0.12", "@types/supertest": "^2.0.12",
"@types/uuid": "^9.0.2", "@types/uuid": "^9.0.3",
"@typescript-eslint/eslint-plugin": "^5.62.0", "@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^5.62.0", "@typescript-eslint/parser": "^6.5.0",
"eslint": "^8.47.0", "eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0", "eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^27.2.3", "eslint-plugin-jest": "^27.2.3",
"jest": "^29.6.2", "jest": "^29.6.4",
"ncp": "^2.0.0", "ncp": "^2.0.0",
"rimraf": "^5.0.1", "rimraf": "^5.0.1",
"socketcluster-client": "^17.2.2", "socketcluster-client": "^17.2.2",
"supertest": "^6.3.3", "supertest": "^6.3.3",
"ts-jest": "^29.1.1", "ts-jest": "^29.1.1",
"typescript": "~5.1.6" "typescript": "~5.2.2"
} }
} }

View File

@ -6,7 +6,7 @@ module.exports = {
extends: '../../eslintrc.ts.react.base.json', extends: '../../eslintrc.ts.react.base.json',
parserOptions: { parserOptions: {
tsconfigRootDir: __dirname, tsconfigRootDir: __dirname,
project: ['./tsconfig.json'], project: true,
}, },
}, },
], ],

View File

@ -41,7 +41,7 @@
"prepublish": "pnpm run type-check && pnpm run lint" "prepublish": "pnpm run type-check && pnpm run lint"
}, },
"dependencies": { "dependencies": {
"@babel/runtime": "^7.22.10", "@babel/runtime": "^7.22.11",
"@types/prop-types": "^15.7.5", "@types/prop-types": "^15.7.5",
"parse-key": "^0.2.1", "parse-key": "^0.2.1",
"prop-types": "^15.8.1", "prop-types": "^15.8.1",
@ -49,25 +49,25 @@
}, },
"devDependencies": { "devDependencies": {
"@babel/cli": "^7.22.10", "@babel/cli": "^7.22.10",
"@babel/core": "^7.22.10", "@babel/core": "^7.22.11",
"@babel/eslint-parser": "^7.22.10", "@babel/eslint-parser": "^7.22.11",
"@babel/plugin-transform-runtime": "^7.22.10", "@babel/plugin-transform-runtime": "^7.22.10",
"@babel/preset-env": "^7.22.10", "@babel/preset-env": "^7.22.14",
"@babel/preset-react": "^7.22.5", "@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5", "@babel/preset-typescript": "^7.22.11",
"@redux-devtools/core": "^3.13.1", "@redux-devtools/core": "^3.13.1",
"@types/parse-key": "^0.2.0", "@types/parse-key": "^0.2.0",
"@types/react": "^18.2.20", "@types/react": "^18.2.21",
"@typescript-eslint/eslint-plugin": "^5.62.0", "@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^5.62.0", "@typescript-eslint/parser": "^6.5.0",
"eslint": "^8.47.0", "eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0", "eslint-config-prettier": "^9.0.0",
"eslint-plugin-react": "^7.33.2", "eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0", "eslint-plugin-react-hooks": "^4.6.0",
"react": "^18.2.0", "react": "^18.2.0",
"redux": "^4.2.1", "redux": "^4.2.1",
"rimraf": "^5.0.1", "rimraf": "^5.0.1",
"typescript": "~5.1.6" "typescript": "~5.2.2"
}, },
"peerDependencies": { "peerDependencies": {
"@redux-devtools/core": "^3.13.1", "@redux-devtools/core": "^3.13.1",

View File

@ -6,7 +6,7 @@ module.exports = {
extends: '../../eslintrc.ts.base.json', extends: '../../eslintrc.ts.base.json',
parserOptions: { parserOptions: {
tsconfigRootDir: __dirname, tsconfigRootDir: __dirname,
project: ['./tsconfig.json'], project: true,
}, },
}, },
], ],

View File

@ -29,23 +29,23 @@
"prepublish": "pnpm run type-check && pnpm run lint" "prepublish": "pnpm run type-check && pnpm run lint"
}, },
"dependencies": { "dependencies": {
"@babel/runtime": "^7.22.10", "@babel/runtime": "^7.22.11",
"immutable": "^4.3.2" "immutable": "^4.3.4"
}, },
"devDependencies": { "devDependencies": {
"@babel/cli": "^7.22.10", "@babel/cli": "^7.22.10",
"@babel/core": "^7.22.10", "@babel/core": "^7.22.11",
"@babel/eslint-parser": "^7.22.10", "@babel/eslint-parser": "^7.22.11",
"@babel/plugin-transform-runtime": "^7.22.10", "@babel/plugin-transform-runtime": "^7.22.10",
"@babel/preset-env": "^7.22.10", "@babel/preset-env": "^7.22.14",
"@babel/preset-typescript": "^7.22.5", "@babel/preset-typescript": "^7.22.11",
"@typescript-eslint/eslint-plugin": "^5.62.0", "@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^5.62.0", "@typescript-eslint/parser": "^6.5.0",
"eslint": "^8.47.0", "eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0", "eslint-config-prettier": "^9.0.0",
"redux": "^4.2.1", "redux": "^4.2.1",
"rimraf": "^5.0.1", "rimraf": "^5.0.1",
"typescript": "~5.1.6" "typescript": "~5.2.2"
}, },
"peerDependencies": { "peerDependencies": {
"redux": "^3.1.0 || ^4.0.0" "redux": "^3.1.0 || ^4.0.0"

View File

@ -6,7 +6,7 @@ module.exports = {
extends: '../../eslintrc.ts.react.base.json', extends: '../../eslintrc.ts.react.base.json',
parserOptions: { parserOptions: {
tsconfigRootDir: __dirname, tsconfigRootDir: __dirname,
project: ['./tsconfig.json'], project: true,
}, },
}, },
{ {

View File

@ -1,5 +1,16 @@
# Change Log # Change Log
## 2.0.0
### Major Changes
- 57751ff9: Add react-dom peerDependency and bump react peerDependency to `^16.8.0 || ^17.0.0 || ^18.0.0`
### Patch Changes
- Updated dependencies [57751ff9]
- @redux-devtools/inspector-monitor@4.0.0
## 1.0.1 ## 1.0.1
### Patch Changes ### Patch Changes

View File

@ -2,7 +2,7 @@ module.exports = {
extends: '../../../eslintrc.ts.react.base.json', extends: '../../../eslintrc.ts.react.base.json',
parserOptions: { parserOptions: {
tsconfigRootDir: __dirname, tsconfigRootDir: __dirname,
project: ['./tsconfig.json'], project: true,
}, },
overrides: [ overrides: [
{ {

View File

@ -1,5 +1,13 @@
# test-demo # test-demo
## 0.1.12
### Patch Changes
- Updated dependencies [57751ff9]
- @redux-devtools/inspector-monitor-test-tab@2.0.0
- @redux-devtools/inspector-monitor@4.0.0
## 0.1.11 ## 0.1.11
### Patch Changes ### Patch Changes

View File

@ -1,7 +1,7 @@
{ {
"private": true, "private": true,
"name": "test-demo", "name": "test-demo",
"version": "0.1.11", "version": "0.1.12",
"license": "MIT", "license": "MIT",
"scripts": { "scripts": {
"start": "cross-env TS_NODE_PROJECT=\"tsconfig.webpack.json\" webpack serve --open", "start": "cross-env TS_NODE_PROJECT=\"tsconfig.webpack.json\" webpack serve --open",
@ -12,10 +12,10 @@
"dependencies": { "dependencies": {
"@redux-devtools/core": "^3.13.0", "@redux-devtools/core": "^3.13.0",
"@redux-devtools/dock-monitor": "^3.0.0", "@redux-devtools/dock-monitor": "^3.0.0",
"@redux-devtools/inspector-monitor": "^3.1.0", "@redux-devtools/inspector-monitor": "^4.0.0",
"@redux-devtools/inspector-monitor-test-tab": "^1.0.1", "@redux-devtools/inspector-monitor-test-tab": "^2.0.0",
"@redux-devtools/ui": "^1.3.0", "@redux-devtools/ui": "^1.3.0",
"immutable": "^4.3.2", "immutable": "^4.3.4",
"lodash.shuffle": "^4.2.0", "lodash.shuffle": "^4.2.0",
"react": "^18.2.0", "react": "^18.2.0",
"react-dom": "^18.2.0", "react-dom": "^18.2.0",
@ -27,23 +27,23 @@
"styled-components": "^5.3.11" "styled-components": "^5.3.11"
}, },
"devDependencies": { "devDependencies": {
"@babel/core": "^7.22.10", "@babel/core": "^7.22.11",
"@babel/preset-env": "^7.22.10", "@babel/preset-env": "^7.22.14",
"@babel/preset-react": "^7.22.5", "@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5", "@babel/preset-typescript": "^7.22.11",
"@types/lodash.shuffle": "^4.2.7", "@types/lodash.shuffle": "^4.2.7",
"@types/node": "^18.17.6", "@types/node": "^18.17.14",
"@types/react": "^18.2.20", "@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7", "@types/react-dom": "^18.2.7",
"@types/redux-logger": "^3.0.9", "@types/redux-logger": "^3.0.9",
"@types/styled-components": "^5.1.26", "@types/styled-components": "^5.1.26",
"@types/webpack-env": "^1.18.1", "@types/webpack-env": "^1.18.1",
"@typescript-eslint/eslint-plugin": "^5.62.0", "@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^5.62.0", "@typescript-eslint/parser": "^6.5.0",
"babel-loader": "^9.1.3", "babel-loader": "^9.1.3",
"cross-env": "^7.0.3", "cross-env": "^7.0.3",
"css-loader": "^6.8.1", "css-loader": "^6.8.1",
"eslint": "^8.47.0", "eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0", "eslint-config-prettier": "^9.0.0",
"eslint-plugin-react": "^7.33.2", "eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0", "eslint-plugin-react-hooks": "^4.6.0",
@ -51,7 +51,7 @@
"html-webpack-plugin": "^5.5.3", "html-webpack-plugin": "^5.5.3",
"style-loader": "^3.3.3", "style-loader": "^3.3.3",
"ts-node": "^10.9.1", "ts-node": "^10.9.1",
"typescript": "~5.1.6", "typescript": "~5.2.2",
"webpack": "^5.88.2", "webpack": "^5.88.2",
"webpack-cli": "^5.1.4", "webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1" "webpack-dev-server": "^4.15.1"

View File

@ -1,6 +1,6 @@
{ {
"name": "@redux-devtools/inspector-monitor-test-tab", "name": "@redux-devtools/inspector-monitor-test-tab",
"version": "1.0.1", "version": "2.0.0",
"description": "Generate tests for redux devtools.", "description": "Generate tests for redux devtools.",
"keywords": [ "keywords": [
"redux", "redux",
@ -43,7 +43,7 @@
"prepublish": "pnpm run type-check && pnpm run lint && pnpm run test" "prepublish": "pnpm run type-check && pnpm run lint && pnpm run test"
}, },
"dependencies": { "dependencies": {
"@babel/runtime": "^7.22.10", "@babel/runtime": "^7.22.11",
"@redux-devtools/ui": "^1.3.0", "@redux-devtools/ui": "^1.3.0",
"@types/prop-types": "^15.7.5", "@types/prop-types": "^15.7.5",
"es6template": "^1.0.5", "es6template": "^1.0.5",
@ -56,41 +56,42 @@
}, },
"devDependencies": { "devDependencies": {
"@babel/cli": "^7.22.10", "@babel/cli": "^7.22.10",
"@babel/core": "^7.22.10", "@babel/core": "^7.22.11",
"@babel/eslint-parser": "^7.22.10", "@babel/eslint-parser": "^7.22.11",
"@babel/plugin-transform-runtime": "^7.22.10", "@babel/plugin-transform-runtime": "^7.22.10",
"@babel/preset-env": "^7.22.10", "@babel/preset-env": "^7.22.14",
"@babel/preset-react": "^7.22.5", "@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5", "@babel/preset-typescript": "^7.22.11",
"@redux-devtools/core": "^3.13.0", "@redux-devtools/core": "^3.13.0",
"@redux-devtools/inspector-monitor": "^3.1.0", "@redux-devtools/inspector-monitor": "^4.0.0",
"@testing-library/react": "^14.0.0", "@testing-library/react": "^14.0.0",
"@types/es6template": "^1.0.1", "@types/es6template": "^1.0.2",
"@types/jest": "^29.5.3", "@types/jest": "^29.5.4",
"@types/jsan": "^3.1.2", "@types/jsan": "^3.1.2",
"@types/object-path": "^0.11.1", "@types/object-path": "^0.11.2",
"@types/react": "^18.2.20", "@types/react": "^18.2.21",
"@typescript-eslint/eslint-plugin": "^5.62.0", "@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^5.62.0", "@typescript-eslint/parser": "^6.5.0",
"eslint": "^8.47.0", "eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0", "eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^27.2.3", "eslint-plugin-jest": "^27.2.3",
"eslint-plugin-react": "^7.33.2", "eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0", "eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.6.2", "jest": "^29.6.4",
"jest-environment-jsdom": "^29.6.2", "jest-environment-jsdom": "^29.6.4",
"react": "^18.2.0", "react": "^18.2.0",
"react-dom": "^18.2.0", "react-dom": "^18.2.0",
"redux": "^4.2.1", "redux": "^4.2.1",
"rimraf": "^5.0.1", "rimraf": "^5.0.1",
"ts-jest": "^29.1.1", "ts-jest": "^29.1.1",
"typescript": "~5.1.6" "typescript": "~5.2.2"
}, },
"peerDependencies": { "peerDependencies": {
"@redux-devtools/inspector-monitor": "^3.1.0", "@redux-devtools/inspector-monitor": "^4.0.0",
"@types/react": "^16.3.0 || ^17.0.0 || ^18.0.0", "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"@types/styled-components": "^5.1.26", "@types/styled-components": "^5.1.26",
"react": "^16.3.0 || ^17.0.0 || ^18.0.0", "react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0",
"redux": "^3.4.0 || ^4.0.0", "redux": "^3.4.0 || ^4.0.0",
"styled-components": "^5.3.11" "styled-components": "^5.3.11"
} }

View File

@ -6,7 +6,7 @@ module.exports = {
extends: '../../eslintrc.ts.react.base.json', extends: '../../eslintrc.ts.react.base.json',
parserOptions: { parserOptions: {
tsconfigRootDir: __dirname, tsconfigRootDir: __dirname,
project: ['./tsconfig.json'], project: true,
}, },
}, },
{ {

View File

@ -1,5 +1,16 @@
# Change Log # Change Log
## 2.0.0
### Major Changes
- 57751ff9: Add react-dom peerDependency and bump react peerDependency to `^16.8.0 || ^17.0.0 || ^18.0.0`
### Patch Changes
- Updated dependencies [57751ff9]
- @redux-devtools/inspector-monitor@4.0.0
## 1.0.1 ## 1.0.1
### Patch Changes ### Patch Changes

View File

@ -1,6 +1,6 @@
{ {
"name": "@redux-devtools/inspector-monitor-trace-tab", "name": "@redux-devtools/inspector-monitor-trace-tab",
"version": "1.0.1", "version": "2.0.0",
"description": "Submonitor for Redux DevTools inspector to show stack traces.", "description": "Submonitor for Redux DevTools inspector to show stack traces.",
"homepage": "https://github.com/reduxjs/redux-devtools/tree/master/packages/redux-devtools-inspector-monitor-trace-tab", "homepage": "https://github.com/reduxjs/redux-devtools/tree/master/packages/redux-devtools-inspector-monitor-trace-tab",
"license": "MIT", "license": "MIT",
@ -31,8 +31,8 @@
}, },
"dependencies": { "dependencies": {
"@babel/code-frame": "^8.0.0-alpha.2", "@babel/code-frame": "^8.0.0-alpha.2",
"@babel/runtime": "^7.22.10", "@babel/runtime": "^7.22.11",
"@types/chrome": "^0.0.243", "@types/chrome": "^0.0.244",
"anser": "^2.1.1", "anser": "^2.1.1",
"html-entities": "^2.4.0", "html-entities": "^2.4.0",
"path-browserify": "^1.0.1", "path-browserify": "^1.0.1",
@ -41,44 +41,45 @@
}, },
"devDependencies": { "devDependencies": {
"@babel/cli": "^7.22.10", "@babel/cli": "^7.22.10",
"@babel/core": "^7.22.10", "@babel/core": "^7.22.11",
"@babel/eslint-parser": "^7.22.10", "@babel/eslint-parser": "^7.22.11",
"@babel/plugin-transform-runtime": "^7.22.10", "@babel/plugin-transform-runtime": "^7.22.10",
"@babel/preset-env": "^7.22.10", "@babel/preset-env": "^7.22.14",
"@babel/preset-react": "^7.22.5", "@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5", "@babel/preset-typescript": "^7.22.11",
"@redux-devtools/core": "^3.13.0", "@redux-devtools/core": "^3.13.0",
"@redux-devtools/inspector-monitor": "^3.1.0", "@redux-devtools/inspector-monitor": "^4.0.0",
"@testing-library/react": "^14.0.0", "@testing-library/react": "^14.0.0",
"@types/babel__code-frame": "^7.0.3", "@types/babel__code-frame": "^7.0.3",
"@types/html-entities": "^1.3.4", "@types/html-entities": "^1.3.4",
"@types/jest": "^29.5.3", "@types/jest": "^29.5.4",
"@types/node": "^18.17.6", "@types/node": "^18.17.14",
"@types/path-browserify": "^1.0.0", "@types/path-browserify": "^1.0.0",
"@types/react": "^18.2.20", "@types/react": "^18.2.21",
"@types/redux-devtools-themes": "^1.0.0", "@types/redux-devtools-themes": "^1.0.0",
"@types/source-map": "0.5.2", "@types/source-map": "0.5.2",
"@typescript-eslint/eslint-plugin": "^5.62.0", "@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^5.62.0", "@typescript-eslint/parser": "^6.5.0",
"eslint": "^8.47.0", "eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0", "eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^27.2.3", "eslint-plugin-jest": "^27.2.3",
"eslint-plugin-react": "^7.33.2", "eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0", "eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.6.2", "jest": "^29.6.4",
"jest-environment-jsdom": "^29.6.2", "jest-environment-jsdom": "^29.6.4",
"react": "^18.2.0", "react": "^18.2.0",
"react-dom": "^18.2.0", "react-dom": "^18.2.0",
"react-test-renderer": "^18.2.0", "react-test-renderer": "^18.2.0",
"redux": "^4.2.1", "redux": "^4.2.1",
"rimraf": "^5.0.1", "rimraf": "^5.0.1",
"ts-jest": "^29.1.1", "ts-jest": "^29.1.1",
"typescript": "~5.1.6" "typescript": "~5.2.2"
}, },
"peerDependencies": { "peerDependencies": {
"@redux-devtools/inspector-monitor": "^3.1.0", "@redux-devtools/inspector-monitor": "^4.0.0",
"@types/react": "^16.3.0 || ^17.0.0 || ^18.0.0", "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react": "^16.3.0 || ^17.0.0 || ^18.0.0", "react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0",
"redux": "^3.4.0 || ^4.0.0" "redux": "^3.4.0 || ^4.0.0"
} }
} }

View File

@ -6,7 +6,7 @@ module.exports = {
extends: '../../eslintrc.ts.react.base.json', extends: '../../eslintrc.ts.react.base.json',
parserOptions: { parserOptions: {
tsconfigRootDir: __dirname, tsconfigRootDir: __dirname,
project: ['./tsconfig.json'], project: true,
}, },
}, },
{ {

View File

@ -1,5 +1,11 @@
# Change Log # Change Log
## 4.0.0
### Major Changes
- 57751ff9: Add react-dom peerDependency and bump react peerDependency to `^16.8.0 || ^17.0.0 || ^18.0.0`
## 3.1.1 ## 3.1.1
### Patch Changes ### Patch Changes

View File

@ -2,7 +2,7 @@ module.exports = {
extends: '../../../eslintrc.ts.react.base.json', extends: '../../../eslintrc.ts.react.base.json',
parserOptions: { parserOptions: {
tsconfigRootDir: __dirname, tsconfigRootDir: __dirname,
project: ['./tsconfig.json'], project: true,
}, },
overrides: [ overrides: [
{ {

View File

@ -1,5 +1,12 @@
# inspector-demo # inspector-demo
## 0.1.8
### Patch Changes
- Updated dependencies [57751ff9]
- @redux-devtools/inspector-monitor@4.0.0
## 0.1.7 ## 0.1.7
### Patch Changes ### Patch Changes

View File

@ -1,7 +1,7 @@
{ {
"private": true, "private": true,
"name": "inspector-demo", "name": "inspector-demo",
"version": "0.1.7", "version": "0.1.8",
"license": "MIT", "license": "MIT",
"scripts": { "scripts": {
"start": "cross-env TS_NODE_PROJECT=\"tsconfig.webpack.json\" webpack serve --open", "start": "cross-env TS_NODE_PROJECT=\"tsconfig.webpack.json\" webpack serve --open",
@ -12,9 +12,9 @@
"dependencies": { "dependencies": {
"@redux-devtools/core": "^3.13.0", "@redux-devtools/core": "^3.13.0",
"@redux-devtools/dock-monitor": "^3.0.0", "@redux-devtools/dock-monitor": "^3.0.0",
"@redux-devtools/inspector-monitor": "^3.0.0", "@redux-devtools/inspector-monitor": "^4.0.0",
"base16": "^1.0.0", "base16": "^1.0.0",
"immutable": "^4.3.2", "immutable": "^4.3.4",
"lodash.shuffle": "^4.2.0", "lodash.shuffle": "^4.2.0",
"react": "^18.2.0", "react": "^18.2.0",
"react-bootstrap": "^2.8.0", "react-bootstrap": "^2.8.0",
@ -25,29 +25,29 @@
"redux-logger": "^3.0.6" "redux-logger": "^3.0.6"
}, },
"devDependencies": { "devDependencies": {
"@babel/core": "^7.22.10", "@babel/core": "^7.22.11",
"@babel/preset-env": "^7.22.10", "@babel/preset-env": "^7.22.14",
"@babel/preset-react": "^7.22.5", "@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5", "@babel/preset-typescript": "^7.22.11",
"@types/base16": "^1.0.2", "@types/base16": "^1.0.2",
"@types/lodash.shuffle": "^4.2.7", "@types/lodash.shuffle": "^4.2.7",
"@types/node": "^18.17.6", "@types/node": "^18.17.14",
"@types/react": "^18.2.20", "@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7", "@types/react-dom": "^18.2.7",
"@types/redux-logger": "^3.0.9", "@types/redux-logger": "^3.0.9",
"@types/webpack-env": "^1.18.1", "@types/webpack-env": "^1.18.1",
"@typescript-eslint/eslint-plugin": "^5.62.0", "@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^5.62.0", "@typescript-eslint/parser": "^6.5.0",
"babel-loader": "^9.1.3", "babel-loader": "^9.1.3",
"cross-env": "^7.0.3", "cross-env": "^7.0.3",
"eslint": "^8.47.0", "eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0", "eslint-config-prettier": "^9.0.0",
"eslint-plugin-react": "^7.33.2", "eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0", "eslint-plugin-react-hooks": "^4.6.0",
"fork-ts-checker-webpack-plugin": "^8.0.0", "fork-ts-checker-webpack-plugin": "^8.0.0",
"html-webpack-plugin": "^5.5.3", "html-webpack-plugin": "^5.5.3",
"ts-node": "^10.9.1", "ts-node": "^10.9.1",
"typescript": "~5.1.6", "typescript": "~5.2.2",
"webpack": "^5.88.2", "webpack": "^5.88.2",
"webpack-cli": "^5.1.4", "webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1" "webpack-dev-server": "^4.15.1"

View File

@ -1,6 +1,6 @@
{ {
"name": "@redux-devtools/inspector-monitor", "name": "@redux-devtools/inspector-monitor",
"version": "3.1.1", "version": "4.0.0",
"description": "Redux DevTools Diff Monitor", "description": "Redux DevTools Diff Monitor",
"homepage": "https://github.com/reduxjs/redux-devtools/tree/master/packages/redux-devtools-inspector-monitor", "homepage": "https://github.com/reduxjs/redux-devtools/tree/master/packages/redux-devtools-inspector-monitor",
"bugs": { "bugs": {
@ -35,7 +35,7 @@
"prepublish": "pnpm run type-check && pnpm run lint" "prepublish": "pnpm run type-check && pnpm run lint"
}, },
"dependencies": { "dependencies": {
"@babel/runtime": "^7.22.10", "@babel/runtime": "^7.22.11",
"@dnd-kit/core": "^6.0.8", "@dnd-kit/core": "^6.0.8",
"@dnd-kit/modifiers": "^6.0.1", "@dnd-kit/modifiers": "^6.0.1",
"@dnd-kit/sortable": "^7.0.2", "@dnd-kit/sortable": "^7.0.2",
@ -45,7 +45,7 @@
"@types/redux-devtools-themes": "^1.0.0", "@types/redux-devtools-themes": "^1.0.0",
"dateformat": "^5.0.3", "dateformat": "^5.0.3",
"hex-rgba": "^1.0.2", "hex-rgba": "^1.0.2",
"immutable": "^4.3.2", "immutable": "^4.3.4",
"javascript-stringify": "^2.1.0", "javascript-stringify": "^2.1.0",
"jsondiffpatch": "^0.5.0", "jsondiffpatch": "^0.5.0",
"jss": "^10.10.0", "jss": "^10.10.0",
@ -58,33 +58,34 @@
}, },
"devDependencies": { "devDependencies": {
"@babel/cli": "^7.22.10", "@babel/cli": "^7.22.10",
"@babel/core": "^7.22.10", "@babel/core": "^7.22.11",
"@babel/eslint-parser": "^7.22.10", "@babel/eslint-parser": "^7.22.11",
"@babel/plugin-transform-runtime": "^7.22.10", "@babel/plugin-transform-runtime": "^7.22.10",
"@babel/preset-env": "^7.22.10", "@babel/preset-env": "^7.22.14",
"@babel/preset-react": "^7.22.5", "@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5", "@babel/preset-typescript": "^7.22.11",
"@redux-devtools/core": "^3.13.1", "@redux-devtools/core": "^3.13.1",
"@types/dateformat": "^5.0.0", "@types/dateformat": "^5.0.0",
"@types/hex-rgba": "^1.0.1", "@types/hex-rgba": "^1.0.1",
"@types/history": "^4.7.11", "@types/history": "^4.7.11",
"@types/lodash.debounce": "^4.0.7", "@types/lodash.debounce": "^4.0.7",
"@types/react": "^18.2.20", "@types/react": "^18.2.21",
"@typescript-eslint/eslint-plugin": "^5.62.0", "@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^5.62.0", "@typescript-eslint/parser": "^6.5.0",
"eslint": "^8.47.0", "eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0", "eslint-config-prettier": "^9.0.0",
"eslint-plugin-react": "^7.33.2", "eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0", "eslint-plugin-react-hooks": "^4.6.0",
"react": "^18.2.0", "react": "^18.2.0",
"redux": "^4.2.1", "redux": "^4.2.1",
"rimraf": "^5.0.1", "rimraf": "^5.0.1",
"typescript": "~5.1.6" "typescript": "~5.2.2"
}, },
"peerDependencies": { "peerDependencies": {
"@redux-devtools/core": "^3.13.1", "@redux-devtools/core": "^3.13.1",
"@types/react": "^16.3.0 || ^17.0.0 || ^18.0.0", "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react": "^16.3.0 || ^17.0.0 || ^18.0.0", "react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0",
"redux": "^3.4.0 || ^4.0.0" "redux": "^3.4.0 || ^4.0.0"
} }
} }

View File

@ -6,7 +6,7 @@ module.exports = {
extends: '../../eslintrc.ts.base.json', extends: '../../eslintrc.ts.base.json',
parserOptions: { parserOptions: {
tsconfigRootDir: __dirname, tsconfigRootDir: __dirname,
project: ['./tsconfig.json'], project: true,
}, },
}, },
{ {

View File

@ -41,30 +41,30 @@
"prepublish": "pnpm run type-check && pnpm run lint && pnpm run test" "prepublish": "pnpm run type-check && pnpm run lint && pnpm run test"
}, },
"dependencies": { "dependencies": {
"@babel/runtime": "^7.22.10", "@babel/runtime": "^7.22.11",
"lodash": "^4.17.21" "lodash": "^4.17.21"
}, },
"devDependencies": { "devDependencies": {
"@babel/cli": "^7.22.10", "@babel/cli": "^7.22.10",
"@babel/core": "^7.22.10", "@babel/core": "^7.22.11",
"@babel/eslint-parser": "^7.22.10", "@babel/eslint-parser": "^7.22.11",
"@babel/plugin-transform-runtime": "^7.22.10", "@babel/plugin-transform-runtime": "^7.22.10",
"@babel/preset-env": "^7.22.10", "@babel/preset-env": "^7.22.14",
"@babel/preset-typescript": "^7.22.5", "@babel/preset-typescript": "^7.22.11",
"@types/jest": "^29.5.3", "@types/jest": "^29.5.4",
"@types/lodash": "^4.14.197", "@types/lodash": "^4.14.197",
"@types/node": "^18.17.6", "@types/node": "^18.17.14",
"@typescript-eslint/eslint-plugin": "^5.62.0", "@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^5.62.0", "@typescript-eslint/parser": "^6.5.0",
"eslint": "^8.47.0", "eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0", "eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^27.2.3", "eslint-plugin-jest": "^27.2.3",
"jest": "^29.6.2", "jest": "^29.6.4",
"redux": "^4.2.1", "redux": "^4.2.1",
"rimraf": "^5.0.1", "rimraf": "^5.0.1",
"rxjs": "^7.8.1", "rxjs": "^7.8.1",
"ts-jest": "^29.1.1", "ts-jest": "^29.1.1",
"typescript": "~5.1.6" "typescript": "~5.2.2"
}, },
"peerDependencies": { "peerDependencies": {
"redux": "^3.4.0 || ^4.0.0" "redux": "^3.4.0 || ^4.0.0"

View File

@ -6,7 +6,7 @@ module.exports = {
extends: '../../eslintrc.ts.react.base.json', extends: '../../eslintrc.ts.react.base.json',
parserOptions: { parserOptions: {
tsconfigRootDir: __dirname, tsconfigRootDir: __dirname,
project: ['./tsconfig.json'], project: true,
}, },
}, },
], ],

View File

@ -41,7 +41,7 @@
"prepublish": "pnpm run type-check && pnpm run lint" "prepublish": "pnpm run type-check && pnpm run lint"
}, },
"dependencies": { "dependencies": {
"@babel/runtime": "^7.22.10", "@babel/runtime": "^7.22.11",
"@types/lodash.debounce": "^4.0.7", "@types/lodash.debounce": "^4.0.7",
"@types/prop-types": "^15.7.5", "@types/prop-types": "^15.7.5",
"@types/redux-devtools-themes": "^1.0.0", "@types/redux-devtools-themes": "^1.0.0",
@ -52,24 +52,24 @@
}, },
"devDependencies": { "devDependencies": {
"@babel/cli": "^7.22.10", "@babel/cli": "^7.22.10",
"@babel/core": "^7.22.10", "@babel/core": "^7.22.11",
"@babel/eslint-parser": "^7.22.10", "@babel/eslint-parser": "^7.22.11",
"@babel/plugin-transform-runtime": "^7.22.10", "@babel/plugin-transform-runtime": "^7.22.10",
"@babel/preset-env": "^7.22.10", "@babel/preset-env": "^7.22.14",
"@babel/preset-react": "^7.22.5", "@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5", "@babel/preset-typescript": "^7.22.11",
"@redux-devtools/core": "^3.13.1", "@redux-devtools/core": "^3.13.1",
"@types/react": "^18.2.20", "@types/react": "^18.2.21",
"@typescript-eslint/eslint-plugin": "^5.62.0", "@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^5.62.0", "@typescript-eslint/parser": "^6.5.0",
"eslint": "^8.47.0", "eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0", "eslint-config-prettier": "^9.0.0",
"eslint-plugin-react": "^7.33.2", "eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0", "eslint-plugin-react-hooks": "^4.6.0",
"react": "^18.2.0", "react": "^18.2.0",
"redux": "^4.2.1", "redux": "^4.2.1",
"rimraf": "^5.0.1", "rimraf": "^5.0.1",
"typescript": "~5.1.6" "typescript": "~5.2.2"
}, },
"peerDependencies": { "peerDependencies": {
"@redux-devtools/core": "^3.13.1", "@redux-devtools/core": "^3.13.1",

View File

@ -6,7 +6,7 @@ module.exports = {
extends: '../../eslintrc.ts.base.json', extends: '../../eslintrc.ts.base.json',
parserOptions: { parserOptions: {
tsconfigRootDir: __dirname, tsconfigRootDir: __dirname,
project: ['./tsconfig.json'], project: true,
}, },
}, },
], ],

View File

@ -41,7 +41,7 @@
"prepublish": "pnpm run type-check && pnpm run lint" "prepublish": "pnpm run type-check && pnpm run lint"
}, },
"dependencies": { "dependencies": {
"@babel/runtime": "^7.22.10", "@babel/runtime": "^7.22.11",
"@redux-devtools/instrument": "^2.1.0", "@redux-devtools/instrument": "^2.1.0",
"@redux-devtools/utils": "^2.0.0", "@redux-devtools/utils": "^2.0.0",
"jsan": "^3.1.14", "jsan": "^3.1.14",
@ -51,22 +51,22 @@
}, },
"devDependencies": { "devDependencies": {
"@babel/cli": "^7.22.10", "@babel/cli": "^7.22.10",
"@babel/core": "^7.22.10", "@babel/core": "^7.22.11",
"@babel/eslint-parser": "^7.22.10", "@babel/eslint-parser": "^7.22.11",
"@babel/plugin-transform-runtime": "^7.22.10", "@babel/plugin-transform-runtime": "^7.22.10",
"@babel/preset-env": "^7.22.10", "@babel/preset-env": "^7.22.14",
"@babel/preset-typescript": "^7.22.5", "@babel/preset-typescript": "^7.22.11",
"@types/jsan": "^3.1.2", "@types/jsan": "^3.1.2",
"@types/node": "^18.17.6", "@types/node": "^18.17.14",
"@types/rn-host-detect": "^1.2.0", "@types/rn-host-detect": "^1.2.0",
"@types/socketcluster-client": "^16.0.0", "@types/socketcluster-client": "^16.0.0",
"@typescript-eslint/eslint-plugin": "^5.62.0", "@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^5.62.0", "@typescript-eslint/parser": "^6.5.0",
"eslint": "^8.47.0", "eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0", "eslint-config-prettier": "^9.0.0",
"redux": "^4.2.1", "redux": "^4.2.1",
"rimraf": "^5.0.1", "rimraf": "^5.0.1",
"typescript": "~5.1.6" "typescript": "~5.2.2"
}, },
"peerDependencies": { "peerDependencies": {
"redux": "^3.5.2 || ^4.0.0" "redux": "^3.5.2 || ^4.0.0"

View File

@ -6,7 +6,7 @@ module.exports = {
extends: '../../eslintrc.ts.react.base.json', extends: '../../eslintrc.ts.react.base.json',
parserOptions: { parserOptions: {
tsconfigRootDir: __dirname, tsconfigRootDir: __dirname,
project: ['./tsconfig.json'], project: true,
}, },
}, },
{ {

View File

@ -2,7 +2,7 @@ module.exports = {
extends: '../../../eslintrc.ts.react.base.json', extends: '../../../eslintrc.ts.react.base.json',
parserOptions: { parserOptions: {
tsconfigRootDir: __dirname, tsconfigRootDir: __dirname,
project: ['./tsconfig.json'], project: true,
}, },
overrides: [ overrides: [
{ {

View File

@ -10,7 +10,7 @@
"type-check": "tsc --noEmit" "type-check": "tsc --noEmit"
}, },
"dependencies": { "dependencies": {
"@babel/runtime": "^7.22.10", "@babel/runtime": "^7.22.11",
"@chakra-ui/react": "^2.8.0", "@chakra-ui/react": "^2.8.0",
"@emotion/react": "^11.11.1", "@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0", "@emotion/styled": "^11.11.0",
@ -19,8 +19,8 @@
"@redux-devtools/dock-monitor": "^3.0.0", "@redux-devtools/dock-monitor": "^3.0.0",
"@redux-devtools/rtk-query-monitor": "^3.1.0", "@redux-devtools/rtk-query-monitor": "^3.1.0",
"@reduxjs/toolkit": "^1.9.5", "@reduxjs/toolkit": "^1.9.5",
"framer-motion": "^10.16.0", "framer-motion": "^10.16.2",
"msw": "^1.2.3", "msw": "^1.3.0",
"react": "^18.2.0", "react": "^18.2.0",
"react-dom": "^18.2.0", "react-dom": "^18.2.0",
"react-icons": "^4.10.1", "react-icons": "^4.10.1",
@ -30,23 +30,23 @@
"styled-components": "^5.3.11" "styled-components": "^5.3.11"
}, },
"devDependencies": { "devDependencies": {
"@babel/core": "^7.22.10", "@babel/core": "^7.22.11",
"@babel/plugin-transform-runtime": "^7.22.10", "@babel/plugin-transform-runtime": "^7.22.10",
"@babel/preset-env": "^7.22.10", "@babel/preset-env": "^7.22.14",
"@babel/preset-react": "^7.22.5", "@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5", "@babel/preset-typescript": "^7.22.11",
"@types/copy-webpack-plugin": "^8.0.1", "@types/copy-webpack-plugin": "^8.0.1",
"@types/node": "^18.17.6", "@types/node": "^18.17.14",
"@types/react": "^18.2.20", "@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7", "@types/react-dom": "^18.2.7",
"@types/styled-components": "^5.1.26", "@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.62.0", "@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^5.62.0", "@typescript-eslint/parser": "^6.5.0",
"babel-loader": "^9.1.3", "babel-loader": "^9.1.3",
"copy-webpack-plugin": "^11.0.0", "copy-webpack-plugin": "^11.0.0",
"cross-env": "^7.0.3", "cross-env": "^7.0.3",
"css-loader": "^6.8.1", "css-loader": "^6.8.1",
"eslint": "^8.47.0", "eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0", "eslint-config-prettier": "^9.0.0",
"eslint-plugin-react": "^7.33.2", "eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0", "eslint-plugin-react-hooks": "^4.6.0",
@ -54,7 +54,7 @@
"html-webpack-plugin": "^5.5.3", "html-webpack-plugin": "^5.5.3",
"style-loader": "^3.3.3", "style-loader": "^3.3.3",
"ts-node": "^10.9.1", "ts-node": "^10.9.1",
"typescript": "~5.1.6", "typescript": "~5.2.2",
"webpack": "^5.88.2", "webpack": "^5.88.2",
"webpack-cli": "^5.1.4", "webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1" "webpack-dev-server": "^4.15.1"

View File

@ -44,13 +44,13 @@
"prepublish": "pnpm run type-check && pnpm run lint && pnpm run test" "prepublish": "pnpm run type-check && pnpm run lint && pnpm run test"
}, },
"dependencies": { "dependencies": {
"@babel/runtime": "^7.22.10", "@babel/runtime": "^7.22.11",
"@redux-devtools/ui": "^1.3.0", "@redux-devtools/ui": "^1.3.0",
"@types/lodash": "^4.14.197", "@types/lodash": "^4.14.197",
"@types/prop-types": "^15.7.5", "@types/prop-types": "^15.7.5",
"@types/redux-devtools-themes": "^1.0.0", "@types/redux-devtools-themes": "^1.0.0",
"hex-rgba": "^1.0.2", "hex-rgba": "^1.0.2",
"immutable": "^4.3.2", "immutable": "^4.3.4",
"jss": "^10.10.0", "jss": "^10.10.0",
"jss-preset-default": "^10.10.0", "jss-preset-default": "^10.10.0",
"lodash.debounce": "^4.0.8", "lodash.debounce": "^4.0.8",
@ -61,36 +61,36 @@
}, },
"devDependencies": { "devDependencies": {
"@babel/cli": "^7.22.10", "@babel/cli": "^7.22.10",
"@babel/core": "^7.22.10", "@babel/core": "^7.22.11",
"@babel/eslint-parser": "^7.22.10", "@babel/eslint-parser": "^7.22.11",
"@babel/plugin-transform-runtime": "^7.22.10", "@babel/plugin-transform-runtime": "^7.22.10",
"@babel/preset-env": "^7.22.10", "@babel/preset-env": "^7.22.14",
"@babel/preset-react": "^7.22.5", "@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5", "@babel/preset-typescript": "^7.22.11",
"@redux-devtools/core": "^3.13.1", "@redux-devtools/core": "^3.13.1",
"@reduxjs/toolkit": "^1.9.5", "@reduxjs/toolkit": "^1.9.5",
"@testing-library/jest-dom": "^6.0.1", "@testing-library/jest-dom": "^6.1.2",
"@testing-library/react": "^14.0.0", "@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.3", "@types/jest": "^29.5.4",
"@types/hex-rgba": "^1.0.1", "@types/hex-rgba": "^1.0.1",
"@types/lodash.debounce": "^4.0.7", "@types/lodash.debounce": "^4.0.7",
"@types/react": "^18.2.20", "@types/react": "^18.2.21",
"@typescript-eslint/eslint-plugin": "^5.62.0", "@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^5.62.0", "@typescript-eslint/parser": "^6.5.0",
"eslint": "^8.47.0", "eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0", "eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^27.2.3", "eslint-plugin-jest": "^27.2.3",
"eslint-plugin-react": "^7.33.2", "eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0", "eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.6.2", "jest": "^29.6.4",
"jest-environment-jsdom": "^29.6.2", "jest-environment-jsdom": "^29.6.4",
"react": "^18.2.0", "react": "^18.2.0",
"react-dom": "^18.2.0", "react-dom": "^18.2.0",
"react-redux": "^8.1.2", "react-redux": "^8.1.2",
"redux": "^4.2.1", "redux": "^4.2.1",
"rimraf": "^5.0.1", "rimraf": "^5.0.1",
"ts-jest": "^29.1.1", "ts-jest": "^29.1.1",
"typescript": "~5.1.6" "typescript": "~5.2.2"
}, },
"peerDependencies": { "peerDependencies": {
"@redux-devtools/core": "^3.13.1", "@redux-devtools/core": "^3.13.1",

View File

@ -6,7 +6,7 @@ module.exports = {
extends: '../../eslintrc.ts.base.json', extends: '../../eslintrc.ts.base.json',
parserOptions: { parserOptions: {
tsconfigRootDir: __dirname, tsconfigRootDir: __dirname,
project: ['./tsconfig.json'], project: true,
}, },
}, },
{ {

View File

@ -37,30 +37,30 @@
"prepublish": "pnpm run type-check && pnpm run lint && pnpm run test" "prepublish": "pnpm run type-check && pnpm run lint && pnpm run test"
}, },
"dependencies": { "dependencies": {
"@babel/runtime": "^7.22.10", "@babel/runtime": "^7.22.11",
"jsan": "^3.1.14" "jsan": "^3.1.14"
}, },
"devDependencies": { "devDependencies": {
"@babel/cli": "^7.22.10", "@babel/cli": "^7.22.10",
"@babel/core": "^7.22.10", "@babel/core": "^7.22.11",
"@babel/eslint-parser": "^7.22.10", "@babel/eslint-parser": "^7.22.11",
"@babel/plugin-transform-runtime": "^7.22.10", "@babel/plugin-transform-runtime": "^7.22.10",
"@babel/preset-env": "^7.22.10", "@babel/preset-env": "^7.22.14",
"@babel/preset-typescript": "^7.22.5", "@babel/preset-typescript": "^7.22.11",
"@types/jest": "^29.5.3", "@types/jest": "^29.5.4",
"@types/jsan": "^3.1.2", "@types/jsan": "^3.1.2",
"@typescript-eslint/eslint-plugin": "^5.62.0", "@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^5.62.0", "@typescript-eslint/parser": "^6.5.0",
"eslint": "^8.47.0", "eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0", "eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^27.2.3", "eslint-plugin-jest": "^27.2.3",
"immutable": "^4.3.2", "immutable": "^4.3.4",
"jest": "^29.6.2", "jest": "^29.6.4",
"rimraf": "^5.0.1", "rimraf": "^5.0.1",
"ts-jest": "^29.1.1", "ts-jest": "^29.1.1",
"typescript": "~5.1.6" "typescript": "~5.2.2"
}, },
"peerDependencies": { "peerDependencies": {
"immutable": "^4.3.2" "immutable": "^4.3.4"
} }
} }

View File

@ -6,7 +6,7 @@ module.exports = {
extends: '../../eslintrc.ts.react.base.json', extends: '../../eslintrc.ts.react.base.json',
parserOptions: { parserOptions: {
tsconfigRootDir: __dirname, tsconfigRootDir: __dirname,
project: ['./tsconfig.json'], project: true,
}, },
}, },
], ],

View File

@ -2,7 +2,7 @@ module.exports = {
extends: '../../../../eslintrc.ts.react.base.json', extends: '../../../../eslintrc.ts.react.base.json',
parserOptions: { parserOptions: {
tsconfigRootDir: __dirname, tsconfigRootDir: __dirname,
project: ['./tsconfig.json'], project: true,
}, },
overrides: [ overrides: [
{ {

View File

@ -30,23 +30,23 @@
"todomvc-app-css": "^2.4.2" "todomvc-app-css": "^2.4.2"
}, },
"devDependencies": { "devDependencies": {
"@babel/core": "^7.22.10", "@babel/core": "^7.22.11",
"@babel/preset-env": "^7.22.10", "@babel/preset-env": "^7.22.14",
"@babel/preset-react": "^7.22.5", "@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5", "@babel/preset-typescript": "^7.22.11",
"@types/classnames": "^2.3.1", "@types/classnames": "^2.3.1",
"@types/node": "^18.17.6", "@types/node": "^18.17.14",
"@types/prop-types": "^15.7.5", "@types/prop-types": "^15.7.5",
"@types/react": "^18.2.20", "@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7", "@types/react-dom": "^18.2.7",
"@types/styled-components": "^5.1.26", "@types/styled-components": "^5.1.26",
"@types/webpack-env": "^1.18.1", "@types/webpack-env": "^1.18.1",
"@typescript-eslint/eslint-plugin": "^5.62.0", "@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^5.62.0", "@typescript-eslint/parser": "^6.5.0",
"babel-loader": "^9.1.3", "babel-loader": "^9.1.3",
"cross-env": "^7.0.3", "cross-env": "^7.0.3",
"css-loader": "^6.8.1", "css-loader": "^6.8.1",
"eslint": "^8.47.0", "eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0", "eslint-config-prettier": "^9.0.0",
"eslint-plugin-react": "^7.33.2", "eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0", "eslint-plugin-react-hooks": "^4.6.0",
@ -54,7 +54,7 @@
"html-webpack-plugin": "^5.5.3", "html-webpack-plugin": "^5.5.3",
"style-loader": "^3.3.3", "style-loader": "^3.3.3",
"ts-node": "^10.9.1", "ts-node": "^10.9.1",
"typescript": "~5.1.6", "typescript": "~5.2.2",
"webpack": "^5.88.2", "webpack": "^5.88.2",
"webpack-cli": "^5.1.4", "webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1" "webpack-dev-server": "^4.15.1"

View File

@ -32,7 +32,7 @@
"prepublish": "pnpm run type-check && pnpm run lint" "prepublish": "pnpm run type-check && pnpm run lint"
}, },
"dependencies": { "dependencies": {
"@babel/runtime": "^7.22.10", "@babel/runtime": "^7.22.11",
"@redux-devtools/ui": "^1.3.0", "@redux-devtools/ui": "^1.3.0",
"@types/prop-types": "^15.7.5", "@types/prop-types": "^15.7.5",
"@types/redux-devtools-themes": "^1.0.0", "@types/redux-devtools-themes": "^1.0.0",
@ -41,24 +41,24 @@
}, },
"devDependencies": { "devDependencies": {
"@babel/cli": "^7.22.10", "@babel/cli": "^7.22.10",
"@babel/core": "^7.22.10", "@babel/core": "^7.22.11",
"@babel/eslint-parser": "^7.22.10", "@babel/eslint-parser": "^7.22.11",
"@babel/preset-env": "^7.22.10", "@babel/preset-env": "^7.22.14",
"@babel/preset-react": "^7.22.5", "@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5", "@babel/preset-typescript": "^7.22.11",
"@redux-devtools/core": "^3.13.1", "@redux-devtools/core": "^3.13.1",
"@types/node": "^18.17.6", "@types/node": "^18.17.14",
"@types/react": "^18.2.20", "@types/react": "^18.2.21",
"@typescript-eslint/eslint-plugin": "^5.62.0", "@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^5.62.0", "@typescript-eslint/parser": "^6.5.0",
"eslint": "^8.47.0", "eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0", "eslint-config-prettier": "^9.0.0",
"eslint-plugin-react": "^7.33.2", "eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0", "eslint-plugin-react-hooks": "^4.6.0",
"react": "^18.2.0", "react": "^18.2.0",
"redux": "^4.2.1", "redux": "^4.2.1",
"rimraf": "^5.0.1", "rimraf": "^5.0.1",
"typescript": "~5.1.6" "typescript": "~5.2.2"
}, },
"peerDependencies": { "peerDependencies": {
"@redux-devtools/core": "^3.13.1", "@redux-devtools/core": "^3.13.1",

View File

@ -6,7 +6,7 @@ module.exports = {
extends: '../../eslintrc.ts.react.base.json', extends: '../../eslintrc.ts.react.base.json',
parserOptions: { parserOptions: {
tsconfigRootDir: __dirname, tsconfigRootDir: __dirname,
project: ['./tsconfig.json'], project: true,
}, },
}, },
{ {

View File

@ -42,16 +42,16 @@
"prepublish": "pnpm run type-check && pnpm run lint && pnpm run test" "prepublish": "pnpm run type-check && pnpm run lint && pnpm run test"
}, },
"dependencies": { "dependencies": {
"@babel/runtime": "^7.22.10", "@babel/runtime": "^7.22.11",
"@rjsf/core": "^4.2.3", "@rjsf/core": "^4.2.3",
"@types/base16": "^1.0.2", "@types/base16": "^1.0.2",
"@types/codemirror": "^5.60.8", "@types/codemirror": "^5.60.9",
"@types/json-schema": "^7.0.12", "@types/json-schema": "^7.0.12",
"@types/prop-types": "^15.7.5", "@types/prop-types": "^15.7.5",
"@types/redux-devtools-themes": "^1.0.0", "@types/redux-devtools-themes": "^1.0.0",
"@types/simple-element-resize-detector": "^1.3.0", "@types/simple-element-resize-detector": "^1.3.0",
"base16": "^1.0.0", "base16": "^1.0.0",
"codemirror": "^5.65.14", "codemirror": "^5.65.15",
"color": "^4.2.3", "color": "^4.2.3",
"prop-types": "^15.8.1", "prop-types": "^15.8.1",
"react-icons": "^4.10.1", "react-icons": "^4.10.1",
@ -61,48 +61,48 @@
}, },
"devDependencies": { "devDependencies": {
"@babel/cli": "^7.22.10", "@babel/cli": "^7.22.10",
"@babel/core": "^7.22.10", "@babel/core": "^7.22.11",
"@babel/eslint-parser": "^7.22.10", "@babel/eslint-parser": "^7.22.11",
"@babel/plugin-transform-runtime": "^7.22.10", "@babel/plugin-transform-runtime": "^7.22.10",
"@babel/preset-env": "^7.22.10", "@babel/preset-env": "^7.22.14",
"@babel/preset-react": "^7.22.5", "@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5", "@babel/preset-typescript": "^7.22.11",
"@storybook/addon-essentials": "^7.3.2", "@storybook/addon-essentials": "^7.5.0-alpha.1",
"@storybook/addon-interactions": "^7.3.2", "@storybook/addon-interactions": "^7.5.0-alpha.1",
"@storybook/addon-links": "^7.3.2", "@storybook/addon-links": "^7.5.0-alpha.1",
"@storybook/react": "^7.3.2", "@storybook/react": "^7.5.0-alpha.1",
"@storybook/react-webpack5": "^7.3.2", "@storybook/react-webpack5": "^7.5.0-alpha.1",
"@testing-library/dom": "^9.3.1", "@testing-library/dom": "^9.3.1",
"@testing-library/react": "^14.0.0", "@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3", "@testing-library/user-event": "^14.4.3",
"@types/color": "^3.0.3", "@types/color": "^3.0.3",
"@types/jest": "^29.5.3", "@types/jest": "^29.5.4",
"@types/react": "^18.2.20", "@types/react": "^18.2.21",
"@types/styled-components": "^5.1.26", "@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.62.0", "@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^5.62.0", "@typescript-eslint/parser": "^6.5.0",
"babel-loader": "^9.1.3", "babel-loader": "^9.1.3",
"csstype": "^3.1.2", "csstype": "^3.1.2",
"eslint": "^8.47.0", "eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0", "eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^27.2.3", "eslint-plugin-jest": "^27.2.3",
"eslint-plugin-react": "^7.33.2", "eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0", "eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.6.2", "jest": "^29.6.4",
"jest-environment-jsdom": "^29.6.2", "jest-environment-jsdom": "^29.6.4",
"ncp": "^2.0.0", "ncp": "^2.0.0",
"react": "^18.2.0", "react": "^18.2.0",
"react-dom": "^18.2.0", "react-dom": "^18.2.0",
"react-is": "^18.2.0", "react-is": "^18.2.0",
"rimraf": "^5.0.1", "rimraf": "^5.0.1",
"storybook": "^7.3.2", "storybook": "^7.5.0-alpha.1",
"styled-components": "^5.3.11", "styled-components": "^5.3.11",
"stylelint": "^15.10.3", "stylelint": "^15.10.3",
"stylelint-config-standard": "^34.0.0", "stylelint-config-standard": "^34.0.0",
"stylelint-config-styled-components": "^0.1.1", "stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.10.0", "stylelint-processor-styled-components": "^1.10.0",
"ts-jest": "^29.1.1", "ts-jest": "^29.1.1",
"typescript": "~5.1.6", "typescript": "~5.2.2",
"webpack": "^5.88.2" "webpack": "^5.88.2"
}, },
"peerDependencies": { "peerDependencies": {

View File

@ -6,7 +6,7 @@ module.exports = {
extends: '../../eslintrc.ts.base.json', extends: '../../eslintrc.ts.base.json',
parserOptions: { parserOptions: {
tsconfigRootDir: __dirname, tsconfigRootDir: __dirname,
project: ['./tsconfig.json'], project: true,
}, },
}, },
], ],

View File

@ -32,12 +32,12 @@
"prepublish": "pnpm run type-check && pnpm run lint" "prepublish": "pnpm run type-check && pnpm run lint"
}, },
"dependencies": { "dependencies": {
"@babel/runtime": "^7.22.10", "@babel/runtime": "^7.22.11",
"@redux-devtools/core": "^3.13.1", "@redux-devtools/core": "^3.13.1",
"@redux-devtools/serialize": "^0.4.1", "@redux-devtools/serialize": "^0.4.1",
"@types/get-params": "^0.1.0", "@types/get-params": "^0.1.0",
"get-params": "^0.1.2", "get-params": "^0.1.2",
"immutable": "^4.3.2", "immutable": "^4.3.4",
"jsan": "^3.1.14", "jsan": "^3.1.14",
"lodash": "^4.17.21", "lodash": "^4.17.21",
"nanoid": "^4.0.2", "nanoid": "^4.0.2",
@ -45,24 +45,24 @@
}, },
"devDependencies": { "devDependencies": {
"@babel/cli": "^7.22.10", "@babel/cli": "^7.22.10",
"@babel/core": "^7.22.10", "@babel/core": "^7.22.11",
"@babel/eslint-parser": "^7.22.10", "@babel/eslint-parser": "^7.22.11",
"@babel/plugin-transform-runtime": "^7.22.10", "@babel/plugin-transform-runtime": "^7.22.10",
"@babel/preset-env": "^7.22.10", "@babel/preset-env": "^7.22.14",
"@babel/preset-typescript": "^7.22.5", "@babel/preset-typescript": "^7.22.11",
"@types/jsan": "^3.1.2", "@types/jsan": "^3.1.2",
"@types/lodash": "^4.14.197", "@types/lodash": "^4.14.197",
"@types/node": "^18.17.6", "@types/node": "^18.17.14",
"@typescript-eslint/eslint-plugin": "^5.62.0", "@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^5.62.0", "@typescript-eslint/parser": "^6.5.0",
"eslint": "^8.47.0", "eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0", "eslint-config-prettier": "^9.0.0",
"rimraf": "^5.0.1", "rimraf": "^5.0.1",
"typescript": "~5.1.6" "typescript": "~5.2.2"
}, },
"peerDependencies": { "peerDependencies": {
"@redux-devtools/core": "^3.13.1", "@redux-devtools/core": "^3.13.1",
"immutable": "^4.3.2", "immutable": "^4.3.4",
"redux": "^4.2.1" "redux": "^4.2.1"
} }
} }

View File

@ -6,7 +6,7 @@ module.exports = {
extends: '../../eslintrc.ts.react.base.json', extends: '../../eslintrc.ts.react.base.json',
parserOptions: { parserOptions: {
tsconfigRootDir: __dirname, tsconfigRootDir: __dirname,
project: ['./tsconfig.json'], project: true,
}, },
}, },
{ {

View File

@ -2,7 +2,7 @@ module.exports = {
extends: '../../../../eslintrc.ts.react.base.json', extends: '../../../../eslintrc.ts.react.base.json',
parserOptions: { parserOptions: {
tsconfigRootDir: __dirname, tsconfigRootDir: __dirname,
project: ['./tsconfig.json'], project: true,
}, },
overrides: [ overrides: [
{ {

View File

@ -30,27 +30,27 @@
"redux-thunk": "^2.4.2" "redux-thunk": "^2.4.2"
}, },
"devDependencies": { "devDependencies": {
"@babel/core": "^7.22.10", "@babel/core": "^7.22.11",
"@babel/preset-env": "^7.22.10", "@babel/preset-env": "^7.22.14",
"@babel/preset-react": "^7.22.5", "@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5", "@babel/preset-typescript": "^7.22.11",
"@types/node": "^18.17.6", "@types/node": "^18.17.14",
"@types/prop-types": "^15.7.5", "@types/prop-types": "^15.7.5",
"@types/react": "^18.2.20", "@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7", "@types/react-dom": "^18.2.7",
"@types/webpack-env": "^1.18.1", "@types/webpack-env": "^1.18.1",
"@typescript-eslint/eslint-plugin": "^5.62.0", "@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^5.62.0", "@typescript-eslint/parser": "^6.5.0",
"babel-loader": "^9.1.3", "babel-loader": "^9.1.3",
"cross-env": "^7.0.3", "cross-env": "^7.0.3",
"eslint": "^8.47.0", "eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0", "eslint-config-prettier": "^9.0.0",
"eslint-plugin-react": "^7.33.2", "eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0", "eslint-plugin-react-hooks": "^4.6.0",
"fork-ts-checker-webpack-plugin": "^8.0.0", "fork-ts-checker-webpack-plugin": "^8.0.0",
"html-webpack-plugin": "^5.5.3", "html-webpack-plugin": "^5.5.3",
"ts-node": "^10.9.1", "ts-node": "^10.9.1",
"typescript": "~5.1.6", "typescript": "~5.2.2",
"webpack": "^5.88.2", "webpack": "^5.88.2",
"webpack-cli": "^5.1.4", "webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1" "webpack-dev-server": "^4.15.1"

View File

@ -2,7 +2,7 @@ module.exports = {
extends: '../../../../eslintrc.ts.react.base.json', extends: '../../../../eslintrc.ts.react.base.json',
parserOptions: { parserOptions: {
tsconfigRootDir: __dirname, tsconfigRootDir: __dirname,
project: ['./tsconfig.json'], project: true,
}, },
overrides: [ overrides: [
{ {

View File

@ -43,22 +43,22 @@
"todomvc-app-css": "^2.4.2" "todomvc-app-css": "^2.4.2"
}, },
"devDependencies": { "devDependencies": {
"@babel/core": "^7.22.10", "@babel/core": "^7.22.11",
"@babel/preset-env": "^7.22.10", "@babel/preset-env": "^7.22.14",
"@babel/preset-react": "^7.22.5", "@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5", "@babel/preset-typescript": "^7.22.11",
"@types/classnames": "^2.3.1", "@types/classnames": "^2.3.1",
"@types/node": "^18.17.6", "@types/node": "^18.17.14",
"@types/prop-types": "^15.7.5", "@types/prop-types": "^15.7.5",
"@types/react": "^18.2.20", "@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7", "@types/react-dom": "^18.2.7",
"@types/webpack-env": "^1.18.1", "@types/webpack-env": "^1.18.1",
"@typescript-eslint/eslint-plugin": "^5.62.0", "@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^5.62.0", "@typescript-eslint/parser": "^6.5.0",
"babel-loader": "^9.1.3", "babel-loader": "^9.1.3",
"cross-env": "^7.0.3", "cross-env": "^7.0.3",
"css-loader": "^6.8.1", "css-loader": "^6.8.1",
"eslint": "^8.47.0", "eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0", "eslint-config-prettier": "^9.0.0",
"eslint-plugin-react": "^7.33.2", "eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0", "eslint-plugin-react-hooks": "^4.6.0",
@ -66,7 +66,7 @@
"html-webpack-plugin": "^5.5.3", "html-webpack-plugin": "^5.5.3",
"style-loader": "^3.3.3", "style-loader": "^3.3.3",
"ts-node": "^10.9.1", "ts-node": "^10.9.1",
"typescript": "~5.1.6", "typescript": "~5.2.2",
"webpack": "^5.88.2", "webpack": "^5.88.2",
"webpack-cli": "^5.1.4", "webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1" "webpack-dev-server": "^4.15.1"

View File

@ -41,7 +41,7 @@
"prepublish": "pnpm run type-check && pnpm run lint && pnpm run test" "prepublish": "pnpm run type-check && pnpm run lint && pnpm run test"
}, },
"dependencies": { "dependencies": {
"@babel/runtime": "^7.22.10", "@babel/runtime": "^7.22.11",
"@redux-devtools/instrument": "^2.1.0", "@redux-devtools/instrument": "^2.1.0",
"@types/prop-types": "^15.7.5", "@types/prop-types": "^15.7.5",
"lodash": "^4.17.21", "lodash": "^4.17.21",
@ -49,31 +49,31 @@
}, },
"devDependencies": { "devDependencies": {
"@babel/cli": "^7.22.10", "@babel/cli": "^7.22.10",
"@babel/core": "^7.22.10", "@babel/core": "^7.22.11",
"@babel/eslint-parser": "^7.22.10", "@babel/eslint-parser": "^7.22.11",
"@babel/plugin-transform-runtime": "^7.22.10", "@babel/plugin-transform-runtime": "^7.22.10",
"@babel/preset-env": "^7.22.10", "@babel/preset-env": "^7.22.14",
"@babel/preset-react": "^7.22.5", "@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5", "@babel/preset-typescript": "^7.22.11",
"@types/jest": "^29.5.3", "@types/jest": "^29.5.4",
"@types/lodash": "^4.14.197", "@types/lodash": "^4.14.197",
"@types/node": "^18.17.6", "@types/node": "^18.17.14",
"@types/react": "^18.2.20", "@types/react": "^18.2.21",
"@typescript-eslint/eslint-plugin": "^5.62.0", "@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^5.62.0", "@typescript-eslint/parser": "^6.5.0",
"eslint": "^8.47.0", "eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0", "eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^27.2.3", "eslint-plugin-jest": "^27.2.3",
"eslint-plugin-react": "^7.33.2", "eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0", "eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.6.2", "jest": "^29.6.4",
"react": "^18.2.0", "react": "^18.2.0",
"react-dom": "^18.2.0", "react-dom": "^18.2.0",
"react-redux": "^8.1.2", "react-redux": "^8.1.2",
"redux": "^4.2.1", "redux": "^4.2.1",
"rimraf": "^5.0.1", "rimraf": "^5.0.1",
"ts-jest": "^29.1.1", "ts-jest": "^29.1.1",
"typescript": "~5.1.6" "typescript": "~5.2.2"
}, },
"peerDependencies": { "peerDependencies": {
"react": "^0.14.9 || ^15.3.0 || ^16.0.0 || ^17.0.0 || ^18.0.0", "react": "^0.14.9 || ^15.3.0 || ^16.0.0 || ^17.0.0 || ^18.0.0",

Some files were not shown because too many files have changed in this diff Show More