Skip to content

Commit e118b07

Browse files
renovate[bot]karlhorky
andauthoredNov 8, 2024··
Update dependency upgrades - non-major (#458)
* Update dependency upgrades - non-major * Fix type error with new typescript-eslint change - typescript-eslint/typescript-eslint#10217 --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Karl Horky <karl.horky@gmail.com>
1 parent d41f44b commit e118b07

File tree

5 files changed

+659
-470
lines changed

5 files changed

+659
-470
lines changed
 

‎__tests__/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"@types/react-dom": "^18.2.6",
2323
"eslint": "^9.10.0",
2424
"eslint-config-upleveled": "^8.11.3",
25-
"postcss-styled-syntax": "^0.6.0",
25+
"postcss-styled-syntax": "^0.7.0",
2626
"prettier": "^3.2.5",
2727
"stylelint": "^16.0.0",
2828
"stylelint-config-upleveled": "^1.0.2",

‎__tests__/pnpm-lock.yaml

+255-238
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎index.js

+10-10
Original file line numberDiff line numberDiff line change
@@ -545,10 +545,15 @@ const configArray = [
545545
rules: {
546546
...eslintConfigReactAppRules,
547547
// eslint-disable-next-line rest-spread-spacing -- Allow JSDoc casting
548-
.../** @type {Exclude<Exclude<import('@typescript-eslint/utils/ts-eslint').FlatConfig.Plugin['configs'], undefined>[string], undefined>} */ (
549-
/** @type
550-
* {Exclude<import('@typescript-eslint/utils/ts-eslint').FlatConfig.Plugin['configs'],
551-
* undefined>} */ (jsxA11y.configs).recommended
548+
.../** @type {Exclude<Exclude<import('@typescript-eslint/utils/ts-eslint').FlatConfig.Config, undefined>, undefined>} */ (
549+
/**
550+
* @type {{
551+
* [key: string]: Exclude<
552+
* import('@typescript-eslint/utils/ts-eslint').FlatConfig.Config,
553+
* undefined
554+
* >;
555+
* }}
556+
*/ (jsxA11y.configs).recommended
552557
).rules,
553558

554559
// Error about importing next/document in a page other than
@@ -976,12 +981,7 @@ const configArray = [
976981
},
977982
},
978983
{
979-
files: [
980-
'**/*.js',
981-
'**/*.jsx',
982-
'**/*.cjs',
983-
'**/*.mjs',
984-
],
984+
files: ['**/*.js', '**/*.jsx', '**/*.cjs', '**/*.mjs'],
985985
rules: {
986986
// Warn on usage of `class` prop instead of `className`
987987
// https://github.com/jsx-eslint/eslint-plugin-react/blob/master/docs/rules/no-unknown-property.md

‎package.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@
3737
"dependencies": {
3838
"@babel/eslint-parser": "7.25.9",
3939
"@eslint/compat": "1.2.2",
40-
"@next/eslint-plugin-next": "15.0.2",
41-
"@typescript-eslint/eslint-plugin": "8.12.2",
42-
"@typescript-eslint/parser": "8.12.2",
40+
"@next/eslint-plugin-next": "15.0.3",
41+
"@typescript-eslint/eslint-plugin": "8.13.0",
42+
"@typescript-eslint/parser": "8.13.0",
4343
"eslint-config-flat-gitignore": "0.3.0",
4444
"eslint-import-resolver-typescript": "3.6.3",
4545
"eslint-plugin-import-x": "4.4.0",
@@ -59,7 +59,7 @@
5959
"ts-api-utils": "1.4.0"
6060
},
6161
"devDependencies": {
62-
"@typescript-eslint/utils": "8.12.2",
62+
"@typescript-eslint/utils": "8.13.0",
6363
"eslint-config-upleveled": "8.11.3",
6464
"prettier": "3.3.3",
6565
"prettier-plugin-embed": "0.4.15",
@@ -68,11 +68,11 @@
6868
"typescript": "5.6.3"
6969
},
7070
"peerDependencies": {
71-
"@types/node": ">=22.8.6",
71+
"@types/node": ">=22.9.0",
7272
"@types/react": "^18.3.12",
7373
"@types/react-dom": "^18.3.1",
74-
"eslint": "^9.13.0",
75-
"globals": "^15.11.0",
74+
"eslint": "^9.14.0",
75+
"globals": "^15.12.0",
7676
"typescript": "^5.6.3"
7777
},
7878
"packageManager": "pnpm@9.12.3",

‎pnpm-lock.yaml

+386-214
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)
Please sign in to comment.