Skip to content

Commit 5822327

Browse files
author
James Bray
committed
Update for latest sveltekit version 1.0.0-next.348
1 parent 2c8e6f8 commit 5822327

File tree

4 files changed

+18
-5
lines changed

4 files changed

+18
-5
lines changed

README.md

+13
Original file line numberDiff line numberDiff line change
@@ -34,3 +34,16 @@ Your app can then be accessed via the CloudFront distribution created as a part
3434

3535
## Static Assets and precompiled pages
3636
To server static assets and precompiled pages this adapter makes use of S3. In order to route traffic the correct destination a Lambda@edge fuction is used to perfrom a origin rewrite to redirect traffic to the S3 Bucket.
37+
38+
## Help! I'm getting an error while building or serving my app.
39+
As SvelteKit is still in early development, there are often breaking changes made to the adapter API and other associated functions. If this is the case, please raise an issue on [Github](https://github.com/yarbsemaj/sveltekit-adapter-lambda/issues), and I will be happy to issue a fix.
40+
41+
## Versions
42+
| Adapter Version| Sveltekit Version |
43+
| ---------------| ----------------- |
44+
| 0.9.x | 1.0.0-next.348 |
45+
| 0.6.x - 0.8.x | 1.0.0-next.301 |
46+
| 0.5.x | 1.0.0-next.286 |
47+
| 0.3.x - 0.4.x | 1.0.0-next.286 |
48+
| 0.2.x | 1.0.0-next.239 |
49+
| 0.1.x | 1.0.0-next.169 |

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@yarbsemaj/adapter-lambda",
3-
"version": "0.8.0",
3+
"version": "0.9.0",
44
"license": "MIT",
55
"description": "An adapter for [SvelteKit](https://kit.svelte.dev/) for AWS Lambda via Lambda Proxy and API Gateway. [Serverless](https://www.serverless.com/) deployment.",
66
"repository": {

src/shims.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
import { installFetch } from '@sveltejs/kit/install-fetch';
2-
installFetch();
1+
import { installPolyfills } from '@sveltejs/kit/node/polyfills';
2+
installPolyfills();

0 commit comments

Comments
 (0)