Skip to content

Commit 4b02e44

Browse files
committed
feat: upgraded the packages
1 parent 19dddb8 commit 4b02e44

File tree

5 files changed

+374
-346
lines changed

5 files changed

+374
-346
lines changed

eslint.config.mjs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
/* eslint-disable import-x/extensions */
2-
31
import customGeneralESLintConfig from './lint/general.eslint.mjs';
42
import customImportESLintConfig from './lint/import.eslint.mjs';
53
import customJSESLintConfig from './lint/javascript.eslint.mjs';

lint/general.eslint.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ const customGeneralESLintConfig = [
3434
},
3535
{
3636
name: 'x/general/ts-only',
37-
files: ['*.{ts,cts,mts,tsx}'],
37+
files: ['**/*.{ts,cts,mts,tsx}'],
3838
rules: {
3939
'no-restricted-imports': [
4040
'error',

lint/import.eslint.mjs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,14 @@ const customImportESLintConfig = [
2222
'import-x/prefer-default-export': 'off',
2323
},
2424
},
25+
// Disable Extensions in Module Files
26+
{
27+
name: 'x/import-x/disable-extensions-in-module-files',
28+
files: ['**/*.mjs'],
29+
rules: {
30+
'import-x/extensions': 'off',
31+
},
32+
},
2533
];
2634

2735
export default customImportESLintConfig;

package.json

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
"typecheck": "tsc --noEmit"
2222
},
2323
"dependencies": {
24-
"@tanstack/react-query": "^5.74.4",
25-
"axios": "^1.8.4",
24+
"@tanstack/react-query": "^5.75.1",
25+
"axios": "^1.9.0",
2626
"clsx": "^2.1.1",
2727
"cookies-next": "^5.1.0",
2828
"next": "^15.3.1",
@@ -31,40 +31,40 @@
3131
"react-dom": "^19.1.0",
3232
"react-hook-form": "^7.56.1",
3333
"react-toastify": "^11.0.5",
34-
"zustand": "^5.0.3"
34+
"zustand": "^5.0.4"
3535
},
3636
"devDependencies": {
37-
"@eslint/compat": "^1.2.8",
37+
"@eslint/compat": "^1.2.9",
3838
"@eslint/js": "^9.25.1",
3939
"@next/eslint-plugin-next": "^15.3.1",
4040
"@stylistic/eslint-plugin": "^3.1.0",
41-
"@tanstack/eslint-plugin-query": "^5.73.3",
42-
"@tanstack/react-query-devtools": "^5.74.6",
43-
"@types/node": "^22.14.1",
41+
"@tanstack/eslint-plugin-query": "^5.74.7",
42+
"@tanstack/react-query-devtools": "^5.75.1",
43+
"@types/node": "^22.15.3",
4444
"@types/react": "^19.1.2",
45-
"@types/react-dom": "^19.1.2",
45+
"@types/react-dom": "^19.1.3",
4646
"eslint": "^9.25.1",
47-
"eslint-config-airbnb-extended": "^1.0.1",
47+
"eslint-config-airbnb-extended": "^1.0.11",
4848
"eslint-config-next": "^15.3.1",
4949
"eslint-config-prettier": "^10.1.2",
5050
"eslint-import-resolver-typescript": "^4.3.4",
51-
"eslint-plugin-import-x": "^4.10.6",
51+
"eslint-plugin-import-x": "^4.11.0",
5252
"eslint-plugin-jsx-a11y": "^6.10.2",
5353
"eslint-plugin-prettier": "^5.2.6",
5454
"eslint-plugin-promise": "^7.2.1",
5555
"eslint-plugin-react": "^7.37.5",
5656
"eslint-plugin-react-hooks": "^5.2.0",
57-
"eslint-plugin-unicorn": "^58.0.0",
57+
"eslint-plugin-unicorn": "^59.0.0",
5858
"eslint-plugin-unused-imports": "^4.1.4",
5959
"husky": "^9.1.7",
6060
"lint-staged": "^15.5.1",
6161
"prettier": "^3.5.3",
6262
"prettier-plugin-packagejson": "^2.5.10",
63-
"type-fest": "^4.40.0",
63+
"type-fest": "^4.40.1",
6464
"typescript": "^5.8.3",
65-
"typescript-eslint": "^8.31.0"
65+
"typescript-eslint": "^8.31.1"
6666
},
67-
"packageManager": "pnpm@10.9.0",
67+
"packageManager": "pnpm@10.10.0",
6868
"engines": {
6969
"node": ">=22.0.0",
7070
"npm": "please-use-pnpm",

0 commit comments

Comments
 (0)