Skip to content

Commit

Permalink
[dependency] Bump dependencies (#1488)
Browse files Browse the repository at this point in the history
  • Loading branch information
SamChou19815 committed Oct 20, 2023
1 parent 7205e15 commit 3c6e657
Show file tree
Hide file tree
Showing 5 changed files with 95 additions and 95 deletions.
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"private": true,
"packageManager": "pnpm@8.8.0",
"packageManager": "pnpm@8.9.2",
"scripts": {
"check": "turbo run check",
"build": "turbo run build",
Expand All @@ -12,13 +12,13 @@
"workspaces": ["packages/*"],
"devDependencies": {
"@biomejs/biome": "^1.2.2",
"@types/node": "^20.8.0",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.8",
"@types/node": "^20.8.6",
"@types/react": "^18.2.28",
"@types/react-dom": "^18.2.13",
"autoprefixer": "^10.4.16",
"postcss": "^8.4.29",
"tailwindcss": "^3.3.3",
"turbo": "^1.10.14",
"turbo": "^1.10.15",
"typescript": "^5.2.2"
}
}
2 changes: 1 addition & 1 deletion packages/private-tools/lib/post-with-form-data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ export default async function postWithFormData(
for (const [k, v] of Object.entries(data)) {
form.set(k, String(v));
}
return await fetch(url, { method: "post", body: form }).then((r) => r.json());
return await fetch(url, { method: "post", body: form as BodyInit }).then((r) => r.json());
}
2 changes: 1 addition & 1 deletion packages/private-tools/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
"build": "exit 0"
},
"devDependencies": {
"bun-types": "^1.0.2"
"bun-types": "^1.0.6"
}
}
2 changes: 1 addition & 1 deletion packages/www/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"@types/mdx": "^2.0.8",
"autoprefixer": "^10.4.16",
"dev-sam-theme": "^0.0.1",
"next": "13.5.3",
"next": "13.5.6",
"postcss": "^8.4.31",
"react": "^18.2.0",
"react-dom": "^18.2.0",
Expand Down

0 comments on commit 3c6e657

Please sign in to comment.