@astrojs/cloudflare 13.1.4 → 13.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/entrypoints/preview.js +1 -1
- package/dist/index.js +7 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -35,4 +35,4 @@ Copyright (c) 2023–present [Astro][astro]
|
|
|
35
35
|
[community]: https://github.com/withastro/.github/blob/main/COMMUNITY_GUIDE.md
|
|
36
36
|
[discord]: https://astro.build/chat/
|
|
37
37
|
[issues]: https://github.com/withastro/adapter/issues
|
|
38
|
-
[astro-integration]: https://docs.astro.build/en/guides/integrations
|
|
38
|
+
[astro-integration]: https://docs.astro.build/en/guides/integrations/
|
|
@@ -87,7 +87,7 @@ function serverStart({
|
|
|
87
87
|
host,
|
|
88
88
|
base
|
|
89
89
|
}) {
|
|
90
|
-
const version = "13.1.
|
|
90
|
+
const version = "13.1.6";
|
|
91
91
|
const localPrefix = `${colors.dim("\u2503")} Local `;
|
|
92
92
|
const networkPrefix = `${colors.dim("\u2503")} Network `;
|
|
93
93
|
const emptyPrefix = " ".repeat(11);
|
package/dist/index.js
CHANGED
|
@@ -188,9 +188,15 @@ function createIntegration({
|
|
|
188
188
|
"astro:*",
|
|
189
189
|
"virtual:astro:*",
|
|
190
190
|
"virtual:astro-cloudflare:*",
|
|
191
|
-
"virtual:@astrojs/*"
|
|
191
|
+
"virtual:@astrojs/*",
|
|
192
|
+
"@astrojs/starlight"
|
|
192
193
|
],
|
|
193
194
|
esbuildOptions: {
|
|
195
|
+
// Suppress Vite's `createRequire(import.meta.url)` banner to work around
|
|
196
|
+
// https://github.com/vitejs/vite/issues/22004 — Vite's SSR transform
|
|
197
|
+
// incorrectly rewrites identifiers inside `import.meta` when an imported
|
|
198
|
+
// binding shares the same name (e.g. zod v4 exports `meta`).
|
|
199
|
+
banner: { js: "" },
|
|
194
200
|
plugins: [astroFrontmatterScanPlugin()]
|
|
195
201
|
}
|
|
196
202
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@astrojs/cloudflare",
|
|
3
3
|
"description": "Deploy your site to Cloudflare Workers",
|
|
4
|
-
"version": "13.1.
|
|
4
|
+
"version": "13.1.6",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
7
7
|
"author": "withastro",
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"@types/node": "^25.2.2",
|
|
53
53
|
"cheerio": "1.2.0",
|
|
54
54
|
"devalue": "^5.6.3",
|
|
55
|
-
"astro": "6.1.
|
|
55
|
+
"astro": "6.1.2",
|
|
56
56
|
"astro-scripts": "0.0.14"
|
|
57
57
|
},
|
|
58
58
|
"publishConfig": {
|