@astrojs/cloudflare 13.0.0-beta.2 → 13.0.0-beta.3
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/dist/entrypoints/preview.js +1 -1
- package/dist/index.js +6 -1
- package/package.json +2 -2
|
@@ -83,7 +83,7 @@ function serverStart({
|
|
|
83
83
|
host,
|
|
84
84
|
base
|
|
85
85
|
}) {
|
|
86
|
-
const version = "13.0.0-beta.
|
|
86
|
+
const version = "13.0.0-beta.3";
|
|
87
87
|
const localPrefix = `${colors.dim("\u2503")} Local `;
|
|
88
88
|
const networkPrefix = `${colors.dim("\u2503")} Network `;
|
|
89
89
|
const emptyPrefix = " ".repeat(11);
|
package/dist/index.js
CHANGED
|
@@ -119,7 +119,12 @@ function createIntegration(args) {
|
|
|
119
119
|
} else if (environmentName === "client") {
|
|
120
120
|
return {
|
|
121
121
|
optimizeDeps: {
|
|
122
|
-
include: ["astro/runtime/client/dev-toolbar/entrypoint.js"]
|
|
122
|
+
include: ["astro/runtime/client/dev-toolbar/entrypoint.js"],
|
|
123
|
+
// Workaround for https://github.com/vitejs/vite/issues/20867
|
|
124
|
+
// When dependencies are discovered mid-request (e.g. a linked package
|
|
125
|
+
// used with client:only), concurrent requests can fail with 504 because
|
|
126
|
+
// the dep optimizer's metadata object gets replaced during `await info.processing`.
|
|
127
|
+
ignoreOutdatedRequests: true
|
|
123
128
|
}
|
|
124
129
|
};
|
|
125
130
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@astrojs/cloudflare",
|
|
3
3
|
"description": "Deploy your site to Cloudflare Workers/Pages",
|
|
4
|
-
"version": "13.0.0-beta.
|
|
4
|
+
"version": "13.0.0-beta.3",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
7
7
|
"author": "withastro",
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"cheerio": "1.1.2",
|
|
52
52
|
"devalue": "^5.6.2",
|
|
53
53
|
"rollup": "^4.55.1",
|
|
54
|
-
"astro": "6.0.0-beta.
|
|
54
|
+
"astro": "6.0.0-beta.6",
|
|
55
55
|
"astro-scripts": "0.0.14"
|
|
56
56
|
},
|
|
57
57
|
"publishConfig": {
|