@astrojs/cloudflare
Advanced tools
Comparing version 0.2.1 to 0.2.2
# @astrojs/cloudflare | ||
## 0.2.2 | ||
### Patch Changes | ||
- [#3777](https://github.com/withastro/astro/pull/3777) [`976e1f17`](https://github.com/withastro/astro/commit/976e1f175a95ea39f737b8575e4fdf3c3d89e1ee) Thanks [@tony-sull](https://github.com/tony-sull)! - Disables HTTP streaming in Cloudflare Pages deployments | ||
## 0.2.1 | ||
@@ -4,0 +10,0 @@ |
import "./shim.js"; | ||
import { App } from "astro/app"; | ||
function createExports(manifest) { | ||
const app = new App(manifest); | ||
const app = new App(manifest, false); | ||
const fetch = async (request, env) => { | ||
@@ -6,0 +6,0 @@ const { origin, pathname } = new URL(request.url); |
{ | ||
"name": "@astrojs/cloudflare", | ||
"description": "Deploy your site to cloudflare pages functions", | ||
"version": "0.2.1", | ||
"version": "0.2.2", | ||
"type": "module", | ||
@@ -25,4 +25,4 @@ "types": "./dist/index.d.ts", | ||
"devDependencies": { | ||
"astro": "1.0.0-beta.55", | ||
"astro-scripts": "0.0.4" | ||
"astro": "1.0.0-beta.61", | ||
"astro-scripts": "0.0.6" | ||
}, | ||
@@ -29,0 +29,0 @@ "scripts": { |
@@ -11,3 +11,3 @@ import './shim.js'; | ||
export function createExports(manifest: SSRManifest) { | ||
const app = new App(manifest); | ||
const app = new App(manifest, false); | ||
@@ -14,0 +14,0 @@ const fetch = async (request: Request, env: Env) => { |
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
13446
15