Skip to content

Commit

Permalink
chore: upgrade deps
Browse files Browse the repository at this point in the history
  • Loading branch information
zanminkian committed Dec 11, 2024
1 parent 0e4501c commit 905e445
Show file tree
Hide file tree
Showing 8 changed files with 25 additions and 15 deletions.
8 changes: 8 additions & 0 deletions .changeset/slimy-owls-unite.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
"eslint-plugin-esm": patch
"@fenge/eslint-config": patch
"smells": patch
"fenge": patch
---

chore: update deps
12 changes: 6 additions & 6 deletions packages/eslint-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,30 +29,30 @@
"dependencies": {
"@fenge/eslint-plugin": "workspace:*",
"@fenge/eslint-plugin-ts": "workspace:*",
"@typescript-eslint/eslint-plugin": "8.16.0",
"@typescript-eslint/parser": "8.16.0",
"@typescript-eslint/eslint-plugin": "8.18.0",
"@typescript-eslint/parser": "8.18.0",
"confusing-browser-globals": "1.0.11",
"eslint-plugin-es-x": "8.4.1",
"eslint-plugin-esm": "workspace:*",
"eslint-plugin-fp": "2.3.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-n": "17.14.0",
"eslint-plugin-n": "17.15.0",
"eslint-plugin-pkg-json": "workspace:*",
"eslint-plugin-promise": "7.2.1",
"eslint-plugin-publint": "workspace:*",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-react-hooks": "5.0.0",
"eslint-plugin-react-hooks": "5.1.0",
"eslint-plugin-simple-import-sort": "12.1.1",
"eslint-plugin-sonarjs": "1.0.4",
"eslint-plugin-unicorn": "56.0.1",
"globals": "15.12.0"
"globals": "15.13.0"
},
"devDependencies": {
"@types/eslint-config-prettier": "6.11.3",
"@types/node": "22.9.1",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"prettier": "3.4.1",
"prettier": "3.4.2",
"tsx": "4.19.2"
},
"peerDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-plugin-esm/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"@types/estree": "1.0.6",
"@types/json-schema": "7.0.15",
"@types/node": "22.9.1",
"@typescript-eslint/parser": "8.16.0",
"@typescript-eslint/parser": "8.18.0",
"eslint": "8.57.1",
"outdent": "0.8.0",
"tsx": "4.19.2"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,10 @@ export const noSideEffectImports = createRule({
return {
"ImportDeclaration[specifiers.length=0]": (node: ImportDeclaration) => {
if (
ignoreExps.some((exp) =>
exp.test(node.source.value?.toString() ?? ""),
ignoreExps.some(
(exp) =>
typeof node.source.value === "string" &&
exp.test(node.source.value),
)
) {
return;
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-plugin-ts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"@types/estree": "1.0.6",
"@types/json-schema": "7.0.15",
"@types/node": "22.9.1",
"@typescript-eslint/parser": "8.16.0",
"@typescript-eslint/parser": "8.18.0",
"eslint": "8.57.1",
"tsx": "4.19.2"
}
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-plugin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"@types/estree": "1.0.6",
"@types/json-schema": "7.0.15",
"@types/node": "22.9.1",
"@typescript-eslint/parser": "8.16.0",
"@typescript-eslint/parser": "8.18.0",
"eslint": "8.57.1",
"tsx": "4.19.2"
}
Expand Down
6 changes: 3 additions & 3 deletions packages/fenge/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,10 @@
"chalk": "5.3.0",
"commander": "12.1.0",
"eslint": "8.57.1",
"lilconfig": "3.1.2",
"lint-staged": "15.2.10",
"lilconfig": "3.1.3",
"lint-staged": "15.2.11",
"ora": "8.1.1",
"prettier": "3.4.1",
"prettier": "3.4.2",
"prettier-ignore": "workspace:*"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/smells/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"build": "tsc"
},
"dependencies": {
"@typescript-eslint/typescript-estree": "8.16.0",
"@typescript-eslint/typescript-estree": "8.18.0",
"commander": "12.1.0",
"globby": "14.0.2"
},
Expand Down

0 comments on commit 905e445

Please sign in to comment.