Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions client/eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ export default defineConfig([
* import/namespace can't parse module subpath exports
*/
'import/ignore': [
'eslint-plugin-testing-library',
Copy link
Owner Author

@shanedg shanedg Dec 23, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  • did this package change it's exports? import/namespace and friends can't parse beween 7.14.0 and 7.15.3

Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

update: yes

'webpack-manifest-plugin',
],
},
Expand Down
6 changes: 3 additions & 3 deletions client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
"prop-types": "~15.8.1",
"react": "~19.2.0",
"react-dom": "~19.2.0",
"react-router": "~7.10.1"
"react-router": "~7.11.0"
},
"devDependencies": {
"@babel/core": "~7.28.5",
Expand Down Expand Up @@ -79,7 +79,7 @@
"eslint": "~9.39.1",
"eslint-plugin-cypress": "~5.2.0",
"eslint-plugin-n": "~17.23.1",
"eslint-plugin-testing-library": "~7.14.0",
"eslint-plugin-testing-library": "~7.15.3",
"globals": "~16.5.0",
"html-webpack-plugin": "~5.6.0",
"jest": "~30.2.0",
Expand All @@ -91,7 +91,7 @@
"style-loader": "~4.0.0",
"terser-webpack-plugin": "~5.3.1",
"typescript": "~5.9.3",
"webpack": "~5.103.0",
"webpack": "~5.104.1",
"webpack-cli": "~6.0.1",
"webpack-dev-server": "~5.2.2",
"webpack-manifest-plugin": "~6.0.1"
Expand Down
3 changes: 1 addition & 2 deletions common/autoinstallers/rush-commitlint/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@ enforced rules.
From this directory, run the following:

```sh
npx npm-check-updates@19.1.2 --upgrade --target minor
npx npm-check-updates@19.1.2 --upgrade --target latest --reject '@types/node'
npx npm-check-updates@19.2.0 --upgrade --target latest
```

> Keep the version of [npm-check-updates] used here in sync with
Expand Down
9 changes: 4 additions & 5 deletions common/autoinstallers/rush-commitlint/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,9 @@
"name": "rush-commitlint",
"version": "1.0.0",
"private": true,
"type": "module",
"dependencies": {
"@commitlint/cli": "~20.1.0",
"@commitlint/config-conventional": "~20.0.0",
"@types/node": "~20.19.25"
},
"type": "module"
"@commitlint/cli": "~20.2.0",
"@commitlint/config-conventional": "~20.2.0"
}
}
157 changes: 77 additions & 80 deletions common/autoinstallers/rush-commitlint/pnpm-lock.yaml

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

2 changes: 1 addition & 1 deletion common/autoinstallers/rush-lint-staged/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ in the pre-commit Git hook.
From this directory, run the following:

```sh
npx npm-check-updates@19.1.2 --upgrade --target latest'
npx npm-check-updates@19.2.0 --upgrade --target latest
```

> Keep the version of [npm-check-updates] used here in sync with
Expand Down
6 changes: 3 additions & 3 deletions common/autoinstallers/rush-lint-staged/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
"version": "1.0.0",
"private": true,
"dependencies": {
"eslint": "~9.39.1",
"lint-staged": "~16.2.6",
"markdownlint-cli2": "~0.19.0",
"eslint": "~9.39.2",
"lint-staged": "~16.2.7",
"markdownlint-cli2": "~0.20.0",
"sort-package-json": "3.6.0"
}
}
Loading