Skip to content

Commit

Permalink
Update development-dependencies (#840)
Browse files Browse the repository at this point in the history
* Update development-dependencies

* Fix ESLint Vitest plugin import

Signed-off-by: Michael Weimann <michael.weimann@nordeck.net>

---------

Signed-off-by: Michael Weimann <michael.weimann@nordeck.net>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Michael Weimann <michael.weimann@nordeck.net>
  • Loading branch information
renovate[bot] and weeman1337 authored Nov 13, 2024
1 parent 0547427 commit 06bd7e2
Show file tree
Hide file tree
Showing 9 changed files with 552 additions and 510 deletions.
2 changes: 1 addition & 1 deletion containers/widget-server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@
"e2e:all": "yarn playwright test --reporter=dot"
},
"devDependencies": {
"@playwright/test": "1.48.0"
"@playwright/test": "1.48.2"
}
}
2 changes: 1 addition & 1 deletion eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@

import { fixupPluginRules } from '@eslint/compat';
import js from '@eslint/js';
import vitest from '@vitest/eslint-plugin';
import eslintConfigPrettier from 'eslint-config-prettier';
import notice from 'eslint-plugin-notice';
import pluginPromise from 'eslint-plugin-promise';
import react from 'eslint-plugin-react';
import hooksPlugin from 'eslint-plugin-react-hooks';
import testingLibrary from 'eslint-plugin-testing-library';
import vitest from 'eslint-plugin-vitest';
import path from 'path';
import ts from 'typescript-eslint';
import { fileURLToPath } from 'url';
Expand Down
20 changes: 10 additions & 10 deletions example-widget-mui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,21 +55,21 @@
"devDependencies": {
"@matrix-widget-toolkit/testing": "3.0.1",
"@testing-library/dom": "10.4.0",
"@testing-library/jest-dom": "6.5.0",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.0.1",
"@testing-library/user-event": "14.5.2",
"@types/node": "22.7.5",
"@types/react": "18.3.1",
"@types/react-dom": "18.2.24",
"@types/node": "22.9.0",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@vitejs/plugin-basic-ssl": "1.1.0",
"@vitejs/plugin-react-swc": "3.7.1",
"@vitest/coverage-v8": "2.1.3",
"axe-core": "4.10.0",
"happy-dom": "15.10.2",
"@vitest/coverage-v8": "2.1.5",
"axe-core": "4.10.2",
"happy-dom": "15.11.4",
"i18next-parser": "9.0.2",
"msw": "2.4.11",
"msw": "2.6.4",
"typescript": "5.6.3",
"vite": "5.4.8",
"vitest": "2.1.3"
"vite": "5.4.11",
"vitest": "2.1.4"
}
}
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,28 +29,28 @@
},
"devDependencies": {
"@changesets/cli": "2.27.9",
"@eslint/compat": "1.2.0",
"@eslint/js": "9.12.0",
"@microsoft/api-extractor": "7.47.9",
"@rollup/plugin-commonjs": "28.0.0",
"@eslint/compat": "1.2.2",
"@eslint/js": "9.14.0",
"@microsoft/api-extractor": "7.47.11",
"@rollup/plugin-commonjs": "28.0.1",
"cross-env": "7.0.3",
"depcheck": "1.4.7",
"dree": "5.1.5",
"eslint": "9.7.0",
"eslint": "9.14.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-notice": "1.0.0",
"eslint-plugin-promise": "7.1.0",
"eslint-plugin-react": "7.37.1",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-react-hooks": "5.0.0",
"eslint-plugin-testing-library": "6.4.0",
"eslint-plugin-vitest": "0.5.4",
"@vitest/eslint-plugin": "1.0.1",
"husky": "9.1.6",
"lint-staged": "15.2.10",
"prettier": "3.3.3",
"prettier-plugin-organize-imports": "4.1.0",
"rollup": "4.24.0",
"rollup": "4.26.0",
"typescript": "5.6.3",
"typescript-eslint": "8.8.1",
"typescript-eslint": "8.14.0",
"yarn-deduplicate": "6.0.2"
},
"lint-staged": {
Expand Down
12 changes: 6 additions & 6 deletions packages/api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@
},
"type": "module",
"devDependencies": {
"@rollup/plugin-commonjs": "28.0.0",
"@types/node": "22.7.5",
"@types/qs": "6.9.16",
"@vitest/coverage-v8": "2.1.3",
"@rollup/plugin-commonjs": "28.0.1",
"@types/node": "22.9.0",
"@types/qs": "6.9.17",
"@vitest/coverage-v8": "2.1.5",
"typescript": "5.6.3",
"vite": "5.4.8",
"vitest": "2.1.3"
"vite": "5.4.11",
"vitest": "2.1.4"
},
"scripts": {
"build": "tsc && rollup --config ../../rollup.config.mjs",
Expand Down
14 changes: 7 additions & 7 deletions packages/mui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,18 @@
},
"type": "module",
"devDependencies": {
"@testing-library/jest-dom": "6.5.0",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.0.1",
"@testing-library/user-event": "14.5.2",
"@types/node": "22.7.5",
"@types/react": "18.3.1",
"@vitest/coverage-v8": "2.1.3",
"axe-core": "4.10.0",
"@types/node": "22.9.0",
"@types/react": "18.3.12",
"@vitest/coverage-v8": "2.1.5",
"axe-core": "4.10.2",
"copyfiles": "2.4.1",
"i18next-parser": "9.0.2",
"typescript": "5.6.3",
"vite": "5.4.8",
"vitest": "2.1.3"
"vite": "5.4.11",
"vitest": "2.1.4"
},
"peerDependencies": {
"react": "18.3.1"
Expand Down
12 changes: 6 additions & 6 deletions packages/react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@
},
"type": "module",
"devDependencies": {
"@testing-library/jest-dom": "6.5.0",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.0.1",
"@testing-library/user-event": "14.5.2",
"@types/node": "22.7.5",
"@types/react": "18.3.1",
"@vitest/coverage-v8": "2.1.3",
"@types/node": "22.9.0",
"@types/react": "18.3.12",
"@vitest/coverage-v8": "2.1.5",
"typescript": "5.6.3",
"vite": "5.4.8",
"vitest": "2.1.3"
"vite": "5.4.11",
"vitest": "2.1.4"
},
"scripts": {
"build": "tsc && rollup --config ../../rollup.config.mjs",
Expand Down
8 changes: 4 additions & 4 deletions packages/testing/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@
},
"type": "module",
"devDependencies": {
"@types/node": "22.7.5",
"@vitest/coverage-v8": "2.1.3",
"@types/node": "22.9.0",
"@vitest/coverage-v8": "2.1.5",
"typescript": "5.6.3",
"vite": "5.4.8",
"vitest": "2.1.3"
"vite": "5.4.11",
"vitest": "2.1.4"
},
"scripts": {
"build": "tsc && rollup --config ../../rollup.config.mjs",
Expand Down
Loading

0 comments on commit 06bd7e2

Please sign in to comment.