@sveltejs/adapter-cloudflare-workers
Advanced tools
Comparing version 1.0.0-next.50 to 1.0.0-next.51
@@ -77,3 +77,2 @@ import { existsSync, readFileSync, writeFileSync } from 'fs'; | ||
builder.writeClient(site.bucket); | ||
builder.writeStatic(site.bucket); | ||
builder.writePrerendered(site.bucket); | ||
@@ -80,0 +79,0 @@ } |
{ | ||
"name": "@sveltejs/adapter-cloudflare-workers", | ||
"version": "1.0.0-next.50", | ||
"version": "1.0.0-next.51", | ||
"repository": { | ||
@@ -36,7 +36,6 @@ "type": "git", | ||
"scripts": { | ||
"lint": "eslint --ignore-path .gitignore \"**/*.{ts,js,svelte}\" && npm run check-format", | ||
"lint": "prettier --check . --config ../../.prettierrc --ignore-path .gitignore", | ||
"format": "npm run check-format -- --write", | ||
"check": "tsc", | ||
"check-format": "prettier --check . --config ../../.prettierrc --ignore-path .gitignore" | ||
"check": "tsc" | ||
} | ||
} |
@@ -77,3 +77,3 @@ # adapter-cloudflare-workers | ||
```js | ||
export async function post({ request, platform }) { | ||
export async function POST({ request, platform }) { | ||
const x = platform.env.YOUR_DURABLE_OBJECT_NAMESPACE.idFromName('x'); | ||
@@ -80,0 +80,0 @@ } |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
11956
205