Skip to content

Commit

Permalink
Upgrade all dependencies to latest (#155)
Browse files Browse the repository at this point in the history
* Upgrade all dependencies

* bump eslint-config-prettier

* Fix broken imports
  • Loading branch information
macalinao authored Aug 13, 2023
1 parent c633ff3 commit 0146853
Show file tree
Hide file tree
Showing 9 changed files with 1,311 additions and 1,040 deletions.
2 changes: 1 addition & 1 deletion .yarn/sdks/eslint/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eslint",
"version": "8.24.0-sdk",
"version": "8.47.0-sdk",
"main": "./lib/api.js",
"type": "commonjs"
}
2 changes: 1 addition & 1 deletion .yarn/sdks/prettier/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "prettier",
"version": "2.7.1-sdk",
"version": "2.8.8-sdk",
"main": "./index.js",
"type": "commonjs"
}
2 changes: 1 addition & 1 deletion .yarn/sdks/typescript/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "typescript",
"version": "4.8.4-sdk",
"version": "5.1.6-sdk",
"main": "./lib/typescript.js",
"type": "commonjs"
}
22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,20 +12,20 @@
"*.{md,js,jsx,json,yml,yaml,css,md}": "prettier --write"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.2.0",
"@rushstack/eslint-patch": "^1.3.3",
"@saberhq/eslint-config": "workspace:*",
"@saberhq/eslint-config-react": "workspace:*",
"@saberhq/tsconfig": "workspace:*",
"@types/eslint": "^8.4.6",
"@types/node": "^18.8.2",
"@types/react": "^18.0.21",
"@typescript-eslint/utils": "^5.39.0",
"@yarnpkg/doctor": "^4.0.0-rc.22",
"eslint": "^8.24.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"typescript": "^4.8.4"
"@types/eslint": "^8.44.2",
"@types/node": "^18.17.5",
"@types/react": "^18.2.20",
"@typescript-eslint/utils": "^6.3.0",
"@yarnpkg/doctor": "^4.0.0-rc.48",
"eslint": "^8.47.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"prettier": "^2",
"typescript": "^5.1.6"
},
"scripts": {
"build": "yarn workspaces foreach --exclude @saberhq/saber-build-common -ptv run build",
Expand Down
14 changes: 7 additions & 7 deletions packages/eslint-config-react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,16 +29,16 @@
},
"dependencies": {
"@saberhq/eslint-config": "workspace:^",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.1",
"eslint-plugin-react-hooks": "^4.6.0"
},
"devDependencies": {
"@saberhq/tsconfig": "workspace:^",
"@types/eslint": "^8.4.6",
"@types/node": "^18.8.2",
"@typescript-eslint/utils": "^5.39.0",
"eslint": "^8.24.0",
"typescript": "^4.8.4"
"@types/eslint": "^8.44.2",
"@types/node": "^18.17.5",
"@typescript-eslint/utils": "^6.3.0",
"eslint": "^8.47.0",
"typescript": "^5.1.6"
}
}
2 changes: 1 addition & 1 deletion packages/eslint-config-react/src/eslint-config-react.cts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { TSESLint } from "@typescript-eslint/utils";
import type { TSESLint } from "@typescript-eslint/utils/dist";

const config: TSESLint.Linter.Config = {
env: {
Expand Down
28 changes: 14 additions & 14 deletions packages/eslint-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,22 +27,22 @@
"eslint": ">=7"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-node": "^0.3.6",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"prettier": "^2.7.1"
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-node": "^0.3.9",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-prettier": "^4",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "^3.0.0",
"prettier": "^2"
},
"devDependencies": {
"@saberhq/tsconfig": "workspace:^",
"@types/eslint": "^8.4.6",
"@types/node": "^18.8.2",
"@typescript-eslint/utils": "^5.39.0",
"eslint": "^8.24.0",
"typescript": "^4.8.4"
"@types/eslint": "^8.44.2",
"@types/node": "^18.17.5",
"@typescript-eslint/utils": "^6.3.0",
"eslint": "^8.47.0",
"typescript": "^5.1.6"
}
}
2 changes: 1 addition & 1 deletion packages/eslint-config/src/eslint-config.cts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import "@typescript-eslint/eslint-plugin";

import type { TSESLint } from "@typescript-eslint/utils";
import type { TSESLint } from "@typescript-eslint/utils/dist";

const config: TSESLint.Linter.Config = {
root: true,
Expand Down
Loading

0 comments on commit 0146853

Please sign in to comment.