Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Include ambient.d.ts files in adapter packages. #6917

Merged
merged 5 commits into from Sep 21, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
9 changes: 9 additions & 0 deletions .changeset/dull-cows-sneeze.md
@@ -0,0 +1,9 @@
---
'@sveltejs/adapter-cloudflare': patch
'@sveltejs/adapter-cloudflare-workers': patch
'@sveltejs/adapter-netlify': patch
'@sveltejs/adapter-node': patch
'@sveltejs/adapter-vercel': patch
Rich-Harris marked this conversation as resolved.
Show resolved Hide resolved
---

Include ambient.d.ts files in adapter packages.
1 change: 1 addition & 0 deletions packages/adapter-cloudflare-workers/package.json
Expand Up @@ -19,6 +19,7 @@
"main": "index.js",
"types": "index.d.ts",
"files": [
"ambient.d.ts",
"files",
"index.d.ts"
],
Expand Down
3 changes: 2 additions & 1 deletion packages/adapter-cloudflare/package.json
Expand Up @@ -20,7 +20,8 @@
"files": [
"files",
"index.js",
"index.d.ts"
"index.d.ts",
"ambient.d.ts"
],
"main": "index.js",
"scripts": {
Expand Down
1 change: 1 addition & 0 deletions packages/adapter-netlify/package.json
Expand Up @@ -19,6 +19,7 @@
"main": "index.js",
"types": "index.d.ts",
"files": [
"ambient.d.ts",
Rich-Harris marked this conversation as resolved.
Show resolved Hide resolved
"files",
"index.d.ts"
],
Expand Down
1 change: 1 addition & 0 deletions packages/adapter-node/package.json
Expand Up @@ -19,6 +19,7 @@
"main": "index.js",
"types": "index.d.ts",
"files": [
"ambient.d.ts",
Rich-Harris marked this conversation as resolved.
Show resolved Hide resolved
"files",
"index.d.ts"
],
Expand Down
1 change: 1 addition & 0 deletions packages/adapter-vercel/package.json
Expand Up @@ -19,6 +19,7 @@
"main": "index.js",
"types": "index.d.ts",
"files": [
"ambient.d.ts",
Rich-Harris marked this conversation as resolved.
Show resolved Hide resolved
"files",
"index.d.ts"
],
Expand Down