Skip to content

Commit

Permalink
⬆️ upgrade dependencies (#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
woohm402 authored Jun 22, 2024
1 parent f54cd6b commit eb3a584
Show file tree
Hide file tree
Showing 9 changed files with 4,861 additions and 2,250 deletions.
8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,11 @@ node_modules
.turbo

.vscode

.pnp.*
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
dist
.yarn
894 changes: 894 additions & 0 deletions .yarn/releases/yarn-4.3.1.cjs

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
yarnPath: .yarn/releases/yarn-4.3.1.cjs
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,11 @@
"publish:react": "yarn build && yarn workspace @woohm402/eslint-config-react publish"
},
"devDependencies": {
"prettier": "3.2.5",
"turbo": "1.13.3"
"prettier": "3.3.2",
"turbo": "2.0.4"
},
"workspaces": [
"packages/*"
]
],
"packageManager": "[email protected]"
}
12 changes: 6 additions & 6 deletions packages/base/package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
{
"name": "@woohm402/eslint-config-base",
"version": "0.2.5",
"version": "0.2.6",
"description": "Base config for TypeScript",
"private": false,
"scripts": {
"build": "tsup",
"test": "vitest run"
Expand Down Expand Up @@ -38,19 +37,20 @@
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-simple-import-sort": "12.1.0",
"typescript-eslint": "7.11.0"
"typescript-eslint": "7.13.1"
},
"peerDependencies": {
"eslint": ">= 9",
"prettier": ">= 3",
"typescript": ">= 5"
},
"devDependencies": {
"@eslint/js": "9.5.0",
"@types/eslint": "8.56.10",
"@types/node": "20.12.13",
"eslint": "9.3.0",
"@types/node": "20.14.8",
"eslint": "9.5.0",
"tsup": "8.1.0",
"typescript": "5.4.5",
"typescript": "5.5.2",
"vitest": "1.6.0"
}
}
11 changes: 5 additions & 6 deletions packages/react/package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
{
"name": "@woohm402/eslint-config-react",
"version": "0.0.3",
"version": "0.1.0",
"description": "Base config for TypeScript React",
"private": false,
"scripts": {
"build": "tsup",
"test": "vitest run"
Expand Down Expand Up @@ -34,7 +33,7 @@
},
"homepage": "https://github.com/woohm402/eslint-config-woohm402#readme",
"dependencies": {
"@eslint/compat": "1.0.3",
"@eslint/compat": "1.1.0",
"@woohm402/eslint-config-base": "0.2.5",
"eslint-plugin-react-hooks": "4.6.2"
},
Expand All @@ -47,11 +46,11 @@
},
"devDependencies": {
"@types/eslint": "8.56.10",
"@types/node": "20.12.13",
"@types/node": "20.14.8",
"@types/react": "18.3.3",
"eslint": "9.3.0",
"eslint": "9.5.0",
"tsup": "8.1.0",
"typescript": "5.4.5",
"typescript": "5.5.2",
"vitest": "1.6.0"
}
}
10 changes: 7 additions & 3 deletions turbo.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
{
"$schema": "https://turbo.build/schema.json",
"pipeline": {
"build": { "outputs": ["dist"] },
"test": { "dependsOn": ["build"] },
"tasks": {
"build": {
"outputs": ["dist"]
},
"test": {
"dependsOn": ["build"]
},
"prettier": {}
}
}
6,167 changes: 3,935 additions & 2,232 deletions yarn.lock

Large diffs are not rendered by default.

0 comments on commit eb3a584

Please sign in to comment.