wrangler 3.107.1 → 3.107.2
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/config-schema.json +0 -42
- package/package.json +3 -4
- package/wrangler-dist/cli.d.ts +0 -17
- package/wrangler-dist/cli.js +143 -444
package/config-schema.json
CHANGED
@@ -603,20 +603,6 @@
|
|
603
603
|
},
|
604
604
|
"type": "array"
|
605
605
|
},
|
606
|
-
"images": {
|
607
|
-
"additionalProperties": false,
|
608
|
-
"default": {},
|
609
|
-
"description": "Binding to Cloudflare Images\n\nNOTE: This field is not automatically inherited from the top level environment, and so must be specified in every named environment.",
|
610
|
-
"properties": {
|
611
|
-
"binding": {
|
612
|
-
"type": "string"
|
613
|
-
}
|
614
|
-
},
|
615
|
-
"required": [
|
616
|
-
"binding"
|
617
|
-
],
|
618
|
-
"type": "object"
|
619
|
-
},
|
620
606
|
"jsx_factory": {
|
621
607
|
"default": "React.createElement",
|
622
608
|
"description": "The function to use to replace jsx syntax.",
|
@@ -1589,20 +1575,6 @@
|
|
1589
1575
|
},
|
1590
1576
|
"type": "array"
|
1591
1577
|
},
|
1592
|
-
"images": {
|
1593
|
-
"additionalProperties": false,
|
1594
|
-
"default": {},
|
1595
|
-
"description": "Binding to Cloudflare Images\n\nNOTE: This field is not automatically inherited from the top level environment, and so must be specified in every named environment.",
|
1596
|
-
"properties": {
|
1597
|
-
"binding": {
|
1598
|
-
"type": "string"
|
1599
|
-
}
|
1600
|
-
},
|
1601
|
-
"required": [
|
1602
|
-
"binding"
|
1603
|
-
],
|
1604
|
-
"type": "object"
|
1605
|
-
},
|
1606
1578
|
"jsx_factory": {
|
1607
1579
|
"default": "React.createElement",
|
1608
1580
|
"description": "The function to use to replace jsx syntax.",
|
@@ -2640,20 +2612,6 @@
|
|
2640
2612
|
},
|
2641
2613
|
"type": "array"
|
2642
2614
|
},
|
2643
|
-
"images": {
|
2644
|
-
"additionalProperties": false,
|
2645
|
-
"default": {},
|
2646
|
-
"description": "Binding to Cloudflare Images\n\nNOTE: This field is not automatically inherited from the top level environment, and so must be specified in every named environment.",
|
2647
|
-
"properties": {
|
2648
|
-
"binding": {
|
2649
|
-
"type": "string"
|
2650
|
-
}
|
2651
|
-
},
|
2652
|
-
"required": [
|
2653
|
-
"binding"
|
2654
|
-
],
|
2655
|
-
"type": "object"
|
2656
|
-
},
|
2657
2615
|
"jsx_factory": {
|
2658
2616
|
"default": "React.createElement",
|
2659
2617
|
"description": "The function to use to replace jsx syntax.",
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "wrangler",
|
3
|
-
"version": "3.107.
|
3
|
+
"version": "3.107.2",
|
4
4
|
"description": "Command-line interface for all things Cloudflare Workers",
|
5
5
|
"keywords": [
|
6
6
|
"wrangler",
|
@@ -55,11 +55,10 @@
|
|
55
55
|
"blake3-wasm": "2.1.5",
|
56
56
|
"esbuild": "0.17.19",
|
57
57
|
"path-to-regexp": "6.3.0",
|
58
|
-
"sharp": "^0.33.5",
|
59
58
|
"unenv": "2.0.0-rc.1",
|
60
59
|
"workerd": "1.20250129.0",
|
61
|
-
"
|
62
|
-
"
|
60
|
+
"@cloudflare/kv-asset-handler": "0.3.4",
|
61
|
+
"miniflare": "3.20250129.0"
|
63
62
|
},
|
64
63
|
"devDependencies": {
|
65
64
|
"@aws-sdk/client-s3": "^3.721.0",
|
package/wrangler-dist/cli.d.ts
CHANGED
@@ -162,8 +162,6 @@ declare type Binding = {
|
|
162
162
|
type: "browser";
|
163
163
|
} | {
|
164
164
|
type: "ai";
|
165
|
-
} | {
|
166
|
-
type: "images";
|
167
165
|
} | {
|
168
166
|
type: "version_metadata";
|
169
167
|
} | {
|
@@ -2176,18 +2174,6 @@ declare interface EnvironmentNonInheritable {
|
|
2176
2174
|
binding: string;
|
2177
2175
|
staging?: boolean;
|
2178
2176
|
} | undefined;
|
2179
|
-
/**
|
2180
|
-
* Binding to Cloudflare Images
|
2181
|
-
*
|
2182
|
-
* NOTE: This field is not automatically inherited from the top level environment,
|
2183
|
-
* and so must be specified in every named environment.
|
2184
|
-
*
|
2185
|
-
* @default {}
|
2186
|
-
* @nonInheritable
|
2187
|
-
*/
|
2188
|
-
images: {
|
2189
|
-
binding: string;
|
2190
|
-
} | undefined;
|
2191
2177
|
/**
|
2192
2178
|
* Binding to the Worker Version's metadata
|
2193
2179
|
*/
|
@@ -26204,8 +26190,6 @@ declare interface StartDevWorkerInput {
|
|
26204
26190
|
testScheduled?: boolean;
|
26205
26191
|
/** Whether to use Vectorize mixed mode -- the worker is run locally but accesses to Vectorize are made remotely */
|
26206
26192
|
bindVectorizeToProd?: boolean;
|
26207
|
-
/** Whether to use Images local mode -- this is lower fidelity, but doesn't require network access */
|
26208
|
-
imagesLocalMode?: boolean;
|
26209
26193
|
/** Treat this as the primary worker in a multiworker setup (i.e. the first Worker in Miniflare's options) */
|
26210
26194
|
multiworkerPrimary?: boolean;
|
26211
26195
|
};
|
@@ -26534,7 +26518,6 @@ export declare interface Unstable_DevOptions {
|
|
26534
26518
|
devEnv?: boolean;
|
26535
26519
|
fileBasedRegistry?: boolean;
|
26536
26520
|
vectorizeBindToProd?: boolean;
|
26537
|
-
imagesLocalMode?: boolean;
|
26538
26521
|
enableIpc?: boolean;
|
26539
26522
|
};
|
26540
26523
|
}
|