Skip to content

Commit

Permalink
[core] Fix depedencies (#12951)
Browse files Browse the repository at this point in the history
  • Loading branch information
LukasTy authored May 1, 2024
1 parent ad0c9bf commit 71896bd
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 103 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@
"@next/eslint-plugin-next": "14.2.3",
"@octokit/plugin-retry": "^6.0.1",
"@octokit/rest": "^20.0.2",
"@playwright/test": "1.43.1",
"@playwright/test": "^1.43.1",
"@testing-library/react": "^14.2.1",
"@types/babel__core": "^7.20.5",
"@types/chai": "^4.3.14",
Expand Down Expand Up @@ -164,7 +164,7 @@
"lerna": "^8.1.2",
"lodash": "^4.17.21",
"markdownlint-cli2": "^0.12.1",
"mocha": "^10.3.0",
"mocha": "^10.4.0",
"moment": "^2.30.1",
"moment-timezone": "^0.5.44",
"nyc": "^15.1.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-plugin-material-ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"main": "src/index.js",
"devDependencies": {
"@types/eslint": "^8.56.5",
"@typescript-eslint/experimental-utils": "^5.62.0",
"@typescript-eslint/utils": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0"
},
"scripts": {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const { ESLintUtils, AST_NODE_TYPES } = require('@typescript-eslint/experimental-utils');
const { ESLintUtils, AST_NODE_TYPES } = require('@typescript-eslint/utils');

const createESLintRule = ESLintUtils.RuleCreator(() => ``);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const originalDocument = global.document;
global.document = undefined;

const path = require('path');
const { TSESLint } = require('@typescript-eslint/experimental-utils');
const { TSESLint } = require('@typescript-eslint/utils');
const rule = require('./no-direct-state-access');

const ruleTester = new TSESLint.RuleTester({
Expand Down
103 changes: 7 additions & 96 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions test/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@
"@mui/x-date-pickers": "workspace:*",
"@mui/x-date-pickers-pro": "workspace:*",
"@react-spring/web": "^9.7.3",
"@playwright/test": "1.43.1",
"@playwright/test": "^1.43.1",
"@types/chai": "^4.3.14",
"@types/prop-types": "^15.7.11",
"@types/react": "18.2.60",
"@types/react": "^18.2.60",
"chai": "^4.4.1",
"dayjs": "^1.11.10",
"prop-types": "^15.8.1",
Expand Down

0 comments on commit 71896bd

Please sign in to comment.