wrangler 4.47.0 → 4.48.0
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/package.json +5 -5
- package/wrangler-dist/cli.d.ts +1 -0
- package/wrangler-dist/cli.js +1140 -938
- package/wrangler-dist/metafile-cjs.json +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wrangler",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.48.0",
|
|
4
4
|
"description": "Command-line interface for all things Cloudflare Workers",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"wrangler",
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
"workerd": "1.20251109.0",
|
|
58
58
|
"@cloudflare/kv-asset-handler": "0.4.0",
|
|
59
59
|
"@cloudflare/unenv-preset": "2.7.10",
|
|
60
|
-
"miniflare": "4.20251109.
|
|
60
|
+
"miniflare": "4.20251109.1"
|
|
61
61
|
},
|
|
62
62
|
"devDependencies": {
|
|
63
63
|
"@aws-sdk/client-s3": "^3.721.0",
|
|
@@ -149,10 +149,10 @@
|
|
|
149
149
|
"@cloudflare/cli": "1.1.3",
|
|
150
150
|
"@cloudflare/containers-shared": "0.3.0",
|
|
151
151
|
"@cloudflare/eslint-config-shared": "1.1.0",
|
|
152
|
-
"@cloudflare/pages-shared": "^0.13.
|
|
153
|
-
"@cloudflare/workers-utils": "0.0.2",
|
|
154
|
-
"@cloudflare/workers-tsconfig": "0.0.0",
|
|
152
|
+
"@cloudflare/pages-shared": "^0.13.85",
|
|
155
153
|
"@cloudflare/workers-shared": "0.18.8",
|
|
154
|
+
"@cloudflare/workers-tsconfig": "0.0.0",
|
|
155
|
+
"@cloudflare/workers-utils": "0.1.0",
|
|
156
156
|
"@cloudflare/workflows-shared": "0.3.8"
|
|
157
157
|
},
|
|
158
158
|
"peerDependencies": {
|
package/wrangler-dist/cli.d.ts
CHANGED
|
@@ -1143,6 +1143,7 @@ declare abstract class Framework {
|
|
|
1143
1143
|
/** Some frameworks (i.e. Nuxt) don't need additional configuration */
|
|
1144
1144
|
get configured(): boolean;
|
|
1145
1145
|
abstract configure(outputDir: string): Promise<RawConfig> | RawConfig;
|
|
1146
|
+
configurationDescription?: string;
|
|
1146
1147
|
}
|
|
1147
1148
|
|
|
1148
1149
|
type AutoConfigDetails = {
|