Skip to content

Commit

Permalink
chore: upgrade dependencies (#11189)
Browse files Browse the repository at this point in the history
* chore: upgrade dependencies

* bump polka too

* can remove ts-ignore now

* bump vite-imagetools
  • Loading branch information
benmccann committed Dec 5, 2023
1 parent e0f97c8 commit 19be5e5
Show file tree
Hide file tree
Showing 8 changed files with 271 additions and 255 deletions.
5 changes: 5 additions & 0 deletions .changeset/twenty-ducks-reply.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@sveltejs/kit': patch
---

chore(deps): upgrade cookies dependency
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"svelte": "^4.2.7",
"typescript": "^5.3.2"
},
"packageManager": "pnpm@8.10.2",
"packageManager": "pnpm@8.11.0",
"engines": {
"pnpm": "^8.0.0"
}
Expand Down
4 changes: 2 additions & 2 deletions packages/adapter-node/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@
"prepublishOnly": "pnpm build"
},
"devDependencies": {
"@polka/url": "^1.0.0-next.23",
"@polka/url": "^1.0.0-next.24",
"@sveltejs/kit": "workspace:^",
"@sveltejs/vite-plugin-svelte": "^3.0.0",
"@types/node": "^18.19.1",
"c8": "^8.0.0",
"polka": "^1.0.0-next.23",
"polka": "^1.0.0-next.24",
"sirv": "^2.0.3",
"typescript": "^5.3.2",
"vitest": "^0.34.5"
Expand Down
1 change: 0 additions & 1 deletion packages/adapter-node/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ export const path = env('SOCKET_PATH', false);
export const host = env('HOST', '0.0.0.0');
export const port = env('PORT', !path && '3000');

// @ts-ignore - https://github.com/lukeed/polka/issues/199
const server = polka().use(handler);

server.listen({ path, host, port }, () => {
Expand Down
2 changes: 1 addition & 1 deletion packages/create-svelte/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
},
"devDependencies": {
"@playwright/test": "1.30.0",
"@types/gitignore-parser": "^0.0.2",
"@types/gitignore-parser": "^0.0.3",
"gitignore-parser": "^0.0.2",
"prettier": "^3.1.0",
"prettier-plugin-svelte": "^3.0.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/enhanced-img/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"dependencies": {
"magic-string": "^0.30.0",
"svelte-parse-markup": "^0.1.1",
"vite-imagetools": "^6.2.6"
"vite-imagetools": "^6.2.7"
},
"devDependencies": {
"@types/estree": "^1.0.2",
Expand Down
4 changes: 2 additions & 2 deletions packages/kit/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
"homepage": "https://kit.svelte.dev",
"type": "module",
"dependencies": {
"@types/cookie": "^0.5.1",
"cookie": "^0.5.0",
"@types/cookie": "^0.6.0",
"cookie": "^0.6.0",
"devalue": "^4.3.1",
"esm-env": "^1.0.0",
"kleur": "^4.1.5",
Expand Down

0 comments on commit 19be5e5

Please sign in to comment.