wrangler 3.8.0 → 3.9.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 +15 -7
- package/wrangler-dist/cli.d.ts +9 -0
- package/wrangler-dist/cli.js +2309 -1582
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wrangler",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.9.0",
|
|
4
4
|
"description": "Command-line interface for all things Cloudflare Workers",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"wrangler",
|
|
@@ -76,7 +76,11 @@
|
|
|
76
76
|
},
|
|
77
77
|
"transformIgnorePatterns": [
|
|
78
78
|
"node_modules/.pnpm/(?!find-up|locate-path|p-locate|p-limit|p-timeout|p-queue|yocto-queue|path-exists|execa|strip-final-newline|npm-run-path|path-key|onetime|mimic-fn|human-signals|is-stream|get-port|supports-color|pretty-bytes|npx-import)"
|
|
79
|
-
]
|
|
79
|
+
],
|
|
80
|
+
"snapshotFormat": {
|
|
81
|
+
"escapeString": true,
|
|
82
|
+
"printBasicPrototype": true
|
|
83
|
+
}
|
|
80
84
|
},
|
|
81
85
|
"dependencies": {
|
|
82
86
|
"@cloudflare/kv-asset-handler": "^0.2.0",
|
|
@@ -85,11 +89,12 @@
|
|
|
85
89
|
"blake3-wasm": "^2.1.5",
|
|
86
90
|
"chokidar": "^3.5.3",
|
|
87
91
|
"esbuild": "0.17.19",
|
|
88
|
-
"miniflare": "3.
|
|
92
|
+
"miniflare": "3.20230918.0",
|
|
89
93
|
"nanoid": "^3.3.3",
|
|
90
94
|
"path-to-regexp": "^6.2.0",
|
|
91
95
|
"selfsigned": "^2.0.1",
|
|
92
|
-
"source-map": "
|
|
96
|
+
"source-map": "0.6.1",
|
|
97
|
+
"source-map-support": "0.5.21",
|
|
93
98
|
"xxhash-wasm": "^1.0.1"
|
|
94
99
|
},
|
|
95
100
|
"devDependencies": {
|
|
@@ -98,7 +103,6 @@
|
|
|
98
103
|
"@cloudflare/workers-types": "^4.20230724.0",
|
|
99
104
|
"@iarna/toml": "^3.0.0",
|
|
100
105
|
"@microsoft/api-extractor": "^7.28.3",
|
|
101
|
-
"@types/better-sqlite3": "^7.6.0",
|
|
102
106
|
"@types/body-parser": "^1.19.2",
|
|
103
107
|
"@types/busboy": "^1.5.0",
|
|
104
108
|
"@types/command-exists": "^1.2.0",
|
|
@@ -112,10 +116,14 @@
|
|
|
112
116
|
"@types/react": "^17.0.37",
|
|
113
117
|
"@types/serve-static": "^1.13.10",
|
|
114
118
|
"@types/signal-exit": "^3.0.1",
|
|
119
|
+
"@types/source-map-support": "^0.5.7",
|
|
115
120
|
"@types/supports-color": "^8.1.1",
|
|
116
121
|
"@types/ws": "^8.5.3",
|
|
117
122
|
"@types/yargs": "^17.0.10",
|
|
118
123
|
"@webcontainer/env": "^1.1.0",
|
|
124
|
+
"@types/jest": "^29.5.5",
|
|
125
|
+
"esbuild-jest": "0.5.0",
|
|
126
|
+
"jest": "^29.7.0",
|
|
119
127
|
"body-parser": "^1.20.0",
|
|
120
128
|
"chalk": "^2.4.2",
|
|
121
129
|
"cli-table3": "^0.6.3",
|
|
@@ -142,7 +150,7 @@
|
|
|
142
150
|
"is-ci": "^3.0.1",
|
|
143
151
|
"javascript-time-ago": "^2.5.4",
|
|
144
152
|
"jest-fetch-mock": "^3.0.3",
|
|
145
|
-
"jest-websocket-mock": "^2.
|
|
153
|
+
"jest-websocket-mock": "^2.5.0",
|
|
146
154
|
"mime": "^3.0.0",
|
|
147
155
|
"minimatch": "^5.1.0",
|
|
148
156
|
"msw": "^0.49.1",
|
|
@@ -166,7 +174,7 @@
|
|
|
166
174
|
"ts-dedent": "^2.2.0",
|
|
167
175
|
"undici": "5.20.0",
|
|
168
176
|
"update-check": "^1.5.4",
|
|
169
|
-
"vitest": "^0.
|
|
177
|
+
"vitest": "^0.34.4",
|
|
170
178
|
"ws": "^8.5.0",
|
|
171
179
|
"xdg-app-paths": "^7.3.0",
|
|
172
180
|
"yargs": "^17.4.1",
|
package/wrangler-dist/cli.d.ts
CHANGED
|
@@ -149,6 +149,15 @@ declare interface CfModule {
|
|
|
149
149
|
* './src/index.js'
|
|
150
150
|
*/
|
|
151
151
|
name: string;
|
|
152
|
+
/**
|
|
153
|
+
* The absolute path of the module on disk, or `undefined` if this is a
|
|
154
|
+
* virtual module. Used as the source URL for this module, so source maps are
|
|
155
|
+
* correctly resolved.
|
|
156
|
+
*
|
|
157
|
+
* @example
|
|
158
|
+
* '/path/to/src/index.js'
|
|
159
|
+
*/
|
|
160
|
+
filePath: string | undefined;
|
|
152
161
|
/**
|
|
153
162
|
* The module content, usually JavaScript or WASM code.
|
|
154
163
|
*
|