wrangler 0.0.0-fb43821 → 0.0.0-fb917263

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.
Files changed (358) hide show
  1. package/Cloudflare_CA.pem +18 -0
  2. package/README.md +47 -14
  3. package/bin/wrangler.js +180 -28
  4. package/kv-asset-handler.js +1 -0
  5. package/miniflare-dist/index.mjs +6368 -0
  6. package/package.json +199 -113
  7. package/src/__tests__/access.test.ts +25 -0
  8. package/src/__tests__/api-dev.test.ts +238 -0
  9. package/src/__tests__/api-devregistry.test.ts +121 -0
  10. package/src/__tests__/api.test.ts +102 -0
  11. package/src/__tests__/config-cache-without-cache-dir.test.ts +38 -0
  12. package/src/__tests__/config-cache.test.ts +42 -0
  13. package/src/__tests__/configuration.test.ts +4509 -0
  14. package/src/__tests__/d1/d1.test.ts +82 -0
  15. package/src/__tests__/d1/execute.test.ts +66 -0
  16. package/src/__tests__/d1/migrate.test.ts +157 -0
  17. package/src/__tests__/d1/splitter.test.ts +255 -0
  18. package/src/__tests__/delete.test.ts +272 -0
  19. package/src/__tests__/deployments.test.ts +369 -0
  20. package/src/__tests__/dev.test.tsx +1617 -0
  21. package/src/__tests__/generate.test.ts +237 -0
  22. package/src/__tests__/get-host-from-url.test.ts +16 -0
  23. package/src/__tests__/guess-worker-format.test.ts +120 -0
  24. package/src/__tests__/helpers/cmd-shim.d.ts +11 -0
  25. package/src/__tests__/helpers/end-event-loop.ts +6 -0
  26. package/src/__tests__/helpers/mock-account-id.ts +48 -0
  27. package/src/__tests__/helpers/mock-auth-domain.ts +20 -0
  28. package/src/__tests__/helpers/mock-bin.ts +36 -0
  29. package/src/__tests__/helpers/mock-console.ts +112 -0
  30. package/src/__tests__/helpers/mock-dialogs.ts +139 -0
  31. package/src/__tests__/helpers/mock-get-pages-upload-token.ts +25 -0
  32. package/src/__tests__/helpers/mock-get-zone-from-host.ts +11 -0
  33. package/src/__tests__/helpers/mock-http-server.ts +46 -0
  34. package/src/__tests__/helpers/mock-istty.ts +74 -0
  35. package/src/__tests__/helpers/mock-known-routes.ts +12 -0
  36. package/src/__tests__/helpers/mock-kv.ts +46 -0
  37. package/src/__tests__/helpers/mock-oauth-flow.ts +263 -0
  38. package/src/__tests__/helpers/mock-process.ts +34 -0
  39. package/src/__tests__/helpers/mock-set-timeout.ts +16 -0
  40. package/src/__tests__/helpers/mock-stdin.ts +108 -0
  41. package/src/__tests__/helpers/mock-web-socket.ts +29 -0
  42. package/src/__tests__/helpers/msw/blob-worker.cjs +19 -0
  43. package/src/__tests__/helpers/msw/handlers/access.ts +13 -0
  44. package/src/__tests__/helpers/msw/handlers/deployments.ts +160 -0
  45. package/src/__tests__/helpers/msw/handlers/namespaces.ts +81 -0
  46. package/src/__tests__/helpers/msw/handlers/oauth.ts +31 -0
  47. package/src/__tests__/helpers/msw/handlers/r2.ts +60 -0
  48. package/src/__tests__/helpers/msw/handlers/script.ts +56 -0
  49. package/src/__tests__/helpers/msw/handlers/user.ts +52 -0
  50. package/src/__tests__/helpers/msw/handlers/zones.ts +20 -0
  51. package/src/__tests__/helpers/msw/index.ts +52 -0
  52. package/src/__tests__/helpers/msw/read-file-sync.js +61 -0
  53. package/src/__tests__/helpers/run-in-tmp.ts +38 -0
  54. package/src/__tests__/helpers/run-wrangler.ts +16 -0
  55. package/src/__tests__/helpers/string-dynamic-values-matcher.ts +28 -0
  56. package/src/__tests__/helpers/worker-scripts/child-wrangler.toml +1 -0
  57. package/src/__tests__/helpers/worker-scripts/hello-world-worker.js +5 -0
  58. package/src/__tests__/helpers/worker-scripts/hello-world-wrangler.toml +1 -0
  59. package/src/__tests__/helpers/worker-scripts/parent-worker.js +11 -0
  60. package/src/__tests__/helpers/worker-scripts/parent-wrangler.toml +5 -0
  61. package/src/__tests__/helpers/write-worker-source.ts +31 -0
  62. package/src/__tests__/helpers/write-wrangler-toml.ts +17 -0
  63. package/src/__tests__/https-options.test.ts +163 -0
  64. package/src/__tests__/index.test.ts +277 -419
  65. package/src/__tests__/init.test.ts +3196 -0
  66. package/src/__tests__/jest.setup.ts +179 -0
  67. package/src/__tests__/kv.test.ts +1799 -0
  68. package/src/__tests__/logger.test.ts +207 -0
  69. package/src/__tests__/logout.test.ts +47 -0
  70. package/src/__tests__/metrics.test.ts +493 -0
  71. package/src/__tests__/middleware.scheduled.test.ts +145 -0
  72. package/src/__tests__/middleware.test.ts +816 -0
  73. package/src/__tests__/mtls-certificates.test.ts +588 -0
  74. package/src/__tests__/package-manager.test.ts +353 -0
  75. package/src/__tests__/pages/deployment-list.test.ts +80 -0
  76. package/src/__tests__/pages/functions-build.test.ts +452 -0
  77. package/src/__tests__/pages/pages.test.ts +81 -0
  78. package/src/__tests__/pages/project-create.test.ts +63 -0
  79. package/src/__tests__/pages/project-list.test.ts +110 -0
  80. package/src/__tests__/pages/project-upload.test.ts +500 -0
  81. package/src/__tests__/pages/publish.test.ts +2864 -0
  82. package/src/__tests__/pages-deployment-tail.test.ts +955 -0
  83. package/src/__tests__/parse.test.ts +436 -0
  84. package/src/__tests__/paths.test.ts +39 -0
  85. package/src/__tests__/publish.test.ts +8423 -0
  86. package/src/__tests__/pubsub.test.ts +496 -0
  87. package/src/__tests__/queues.test.ts +532 -0
  88. package/src/__tests__/r2.test.ts +374 -0
  89. package/src/__tests__/route.test.ts +45 -0
  90. package/src/__tests__/secret.test.ts +693 -0
  91. package/src/__tests__/tail.test.ts +958 -0
  92. package/src/__tests__/test-old-node-version.js +31 -0
  93. package/src/__tests__/traverse-module-graph.test.ts +220 -0
  94. package/src/__tests__/tsconfig-sanity.ts +12 -0
  95. package/src/__tests__/tsconfig.json +8 -0
  96. package/src/__tests__/tsconfig.tsbuildinfo +1 -0
  97. package/src/__tests__/type-generation.test.ts +234 -0
  98. package/src/__tests__/user.test.ts +118 -0
  99. package/src/__tests__/utils-collectKeyValues.test.ts +47 -0
  100. package/src/__tests__/validate-dev-props.test.ts +56 -0
  101. package/src/__tests__/version.test.ts +35 -0
  102. package/src/__tests__/whoami.test.tsx +172 -0
  103. package/src/__tests__/worker-namespace.test.ts +340 -0
  104. package/src/abort.d.ts +3 -0
  105. package/src/api/dev.ts +316 -0
  106. package/src/api/index.ts +11 -0
  107. package/src/api/mtls-certificate.ts +148 -0
  108. package/src/api/pages/create-worker-bundle-contents.ts +76 -0
  109. package/src/api/pages/index.ts +5 -0
  110. package/src/api/pages/publish.tsx +355 -0
  111. package/src/bundle-reporter.ts +68 -0
  112. package/src/bundle.ts +908 -0
  113. package/src/cfetch/index.ts +158 -0
  114. package/src/cfetch/internal.ts +258 -0
  115. package/src/cli.ts +26 -8
  116. package/src/config/README.md +107 -0
  117. package/src/config/config.ts +282 -0
  118. package/src/config/diagnostics.ts +80 -0
  119. package/src/config/environment.ts +618 -0
  120. package/src/config/index.ts +403 -0
  121. package/src/config/validation-helpers.ts +597 -0
  122. package/src/config/validation.ts +2342 -0
  123. package/src/config-cache.ts +85 -0
  124. package/src/create-worker-preview.ts +293 -0
  125. package/src/create-worker-upload-form.ts +359 -0
  126. package/src/d1/backups.tsx +219 -0
  127. package/src/d1/constants.ts +2 -0
  128. package/src/d1/create.tsx +68 -0
  129. package/src/d1/delete.ts +53 -0
  130. package/src/d1/execute.tsx +357 -0
  131. package/src/d1/formatTimeAgo.ts +14 -0
  132. package/src/d1/index.ts +100 -0
  133. package/src/d1/list.tsx +60 -0
  134. package/src/d1/migrations/apply.tsx +212 -0
  135. package/src/d1/migrations/create.tsx +79 -0
  136. package/src/d1/migrations/helpers.ts +172 -0
  137. package/src/d1/migrations/index.ts +3 -0
  138. package/src/d1/migrations/list.tsx +95 -0
  139. package/src/d1/migrations/options.ts +23 -0
  140. package/src/d1/options.ts +22 -0
  141. package/src/d1/splitter.ts +161 -0
  142. package/src/d1/types.ts +25 -0
  143. package/src/d1/utils.ts +49 -0
  144. package/src/delete.ts +100 -0
  145. package/src/deployments.ts +368 -0
  146. package/src/deprecated/index.ts +144 -0
  147. package/src/dev/dev-vars.ts +39 -0
  148. package/src/dev/dev.tsx +600 -0
  149. package/src/dev/get-local-persistence-path.ts +31 -0
  150. package/src/dev/local.tsx +920 -0
  151. package/src/dev/remote.tsx +632 -0
  152. package/src/dev/start-server.ts +534 -0
  153. package/src/dev/use-esbuild.ts +203 -0
  154. package/src/dev/validate-dev-props.ts +40 -0
  155. package/src/dev-registry.ts +202 -0
  156. package/src/dev.tsx +910 -757
  157. package/src/dialogs.ts +136 -0
  158. package/src/dispatch-namespace.ts +211 -0
  159. package/src/docs/index.ts +97 -0
  160. package/src/durable.ts +102 -0
  161. package/src/entry.ts +337 -0
  162. package/src/environment-variables/factory.ts +88 -0
  163. package/src/environment-variables/misc-variables.ts +30 -0
  164. package/src/errors.ts +11 -0
  165. package/src/generate/index.ts +298 -0
  166. package/src/git-client.ts +135 -0
  167. package/src/global-wrangler-config-path.ts +26 -0
  168. package/src/https-options.ts +127 -0
  169. package/src/index.ts +758 -0
  170. package/src/init.ts +1032 -0
  171. package/src/inspect.ts +782 -0
  172. package/src/intl-polyfill.d.ts +139 -0
  173. package/src/is-ci.ts +14 -0
  174. package/src/is-interactive.ts +16 -0
  175. package/src/jest.d.ts +4 -0
  176. package/src/kv/helpers.ts +430 -0
  177. package/src/kv/index.ts +594 -0
  178. package/src/logger.ts +119 -0
  179. package/src/metrics/index.ts +5 -0
  180. package/src/metrics/metrics-config.ts +239 -0
  181. package/src/metrics/metrics-dispatcher.ts +96 -0
  182. package/src/metrics/metrics-usage-headers.ts +24 -0
  183. package/src/metrics/send-event.ts +99 -0
  184. package/src/miniflare-cli/README.md +30 -0
  185. package/src/miniflare-cli/assets.ts +251 -0
  186. package/src/miniflare-cli/index.ts +210 -0
  187. package/src/miniflare-cli/request-context.ts +40 -0
  188. package/src/miniflare-cli/tsconfig.json +9 -0
  189. package/src/miniflare-cli/tsconfig.tsbuildinfo +1 -0
  190. package/src/miniflare-cli/types.ts +11 -0
  191. package/src/module-collection.ts +322 -53
  192. package/src/mtls-certificate/cli.ts +155 -0
  193. package/src/open-in-browser.ts +17 -0
  194. package/src/package-manager.ts +219 -0
  195. package/src/pages/build.ts +410 -0
  196. package/src/pages/buildFunctions.ts +140 -0
  197. package/src/pages/constants.ts +18 -0
  198. package/src/pages/deployment-tails.ts +281 -0
  199. package/src/pages/deployments.tsx +84 -0
  200. package/src/pages/dev.ts +716 -0
  201. package/src/pages/errors.ts +67 -0
  202. package/src/pages/functions/buildPlugin.ts +113 -0
  203. package/src/pages/functions/buildWorker.ts +291 -0
  204. package/src/pages/functions/filepath-routing.test.ts +234 -0
  205. package/src/pages/functions/filepath-routing.ts +189 -0
  206. package/src/pages/functions/identifiers.ts +78 -0
  207. package/src/pages/functions/routes-consolidation.test.ts +250 -0
  208. package/src/pages/functions/routes-consolidation.ts +73 -0
  209. package/src/pages/functions/routes-transformation.test.ts +282 -0
  210. package/src/pages/functions/routes-transformation.ts +115 -0
  211. package/src/pages/functions/routes-validation.test.ts +403 -0
  212. package/src/pages/functions/routes-validation.ts +202 -0
  213. package/src/pages/functions/routes.ts +151 -0
  214. package/src/pages/functions/tsconfig.json +8 -0
  215. package/src/pages/functions/tsconfig.tsbuildinfo +1 -0
  216. package/src/pages/functions.ts +86 -0
  217. package/src/pages/hash.ts +13 -0
  218. package/src/pages/index.ts +102 -0
  219. package/src/pages/projects.tsx +159 -0
  220. package/src/pages/prompt-select-project.tsx +31 -0
  221. package/src/pages/publish.tsx +267 -0
  222. package/src/pages/types.ts +46 -0
  223. package/src/pages/upload.tsx +469 -0
  224. package/src/pages/utils.ts +23 -0
  225. package/src/parse.ts +308 -0
  226. package/src/paths.ts +71 -0
  227. package/src/proxy.ts +694 -0
  228. package/src/publish/index.ts +274 -0
  229. package/src/publish/publish.ts +1060 -0
  230. package/src/pubsub/index.ts +286 -0
  231. package/src/pubsub/pubsub-commands.ts +623 -0
  232. package/src/queues/cli/commands/consumer/add.ts +71 -0
  233. package/src/queues/cli/commands/consumer/index.ts +19 -0
  234. package/src/queues/cli/commands/consumer/remove.ts +31 -0
  235. package/src/queues/cli/commands/create.ts +25 -0
  236. package/src/queues/cli/commands/delete.ts +26 -0
  237. package/src/queues/cli/commands/index.ts +35 -0
  238. package/src/queues/cli/commands/list.ts +25 -0
  239. package/src/queues/client.ts +136 -0
  240. package/src/queues/utils.ts +18 -0
  241. package/src/r2/constants.ts +4 -0
  242. package/src/r2/helpers.ts +132 -0
  243. package/src/r2/index.ts +289 -0
  244. package/src/routes.ts +140 -0
  245. package/src/secret/index.ts +376 -0
  246. package/src/selfsigned.d.ts +29 -0
  247. package/src/sites.ts +372 -0
  248. package/src/tail/createTail.ts +406 -0
  249. package/src/tail/filters.ts +277 -0
  250. package/src/tail/index.ts +211 -0
  251. package/src/tail/printing.ts +122 -0
  252. package/src/traverse-module-graph.ts +53 -0
  253. package/src/tsconfig-sanity.ts +16 -0
  254. package/src/type-generation.ts +181 -0
  255. package/src/update-check.ts +19 -0
  256. package/src/user/access.ts +68 -0
  257. package/src/user/auth-variables.ts +113 -0
  258. package/src/user/choose-account.tsx +39 -0
  259. package/src/user/generate-auth-url.ts +33 -0
  260. package/src/user/generate-random-state.ts +16 -0
  261. package/src/user/index.ts +2 -0
  262. package/src/user/user.ts +1233 -0
  263. package/src/utils/collectKeyValues.ts +14 -0
  264. package/src/utils/render.ts +93 -0
  265. package/src/whoami.ts +135 -0
  266. package/src/worker.ts +274 -0
  267. package/src/yargs-types.ts +37 -0
  268. package/src/zones.ts +191 -0
  269. package/templates/__tests__/pages-dev-util.test.ts +128 -0
  270. package/templates/__tests__/tsconfig-sanity.ts +12 -0
  271. package/templates/__tests__/tsconfig.json +8 -0
  272. package/templates/__tests__/tsconfig.tsbuildinfo +1 -0
  273. package/templates/checked-fetch.js +23 -0
  274. package/templates/d1-beta-facade.js +244 -0
  275. package/templates/facade.d.ts +14 -0
  276. package/templates/first-party-worker-module-facade.ts +19 -0
  277. package/templates/format-dev-errors.ts +34 -0
  278. package/templates/gitignore +172 -0
  279. package/templates/init-tests/test-jest-new-worker.js +23 -0
  280. package/templates/init-tests/test-vitest-new-worker.js +24 -0
  281. package/templates/init-tests/test-vitest-new-worker.ts +25 -0
  282. package/templates/middleware/common.ts +62 -0
  283. package/templates/middleware/loader-modules.ts +84 -0
  284. package/templates/middleware/loader-sw.ts +233 -0
  285. package/templates/middleware/middleware-miniflare3-json-error.ts +32 -0
  286. package/templates/middleware/middleware-pretty-error.ts +40 -0
  287. package/templates/middleware/middleware-scheduled.ts +15 -0
  288. package/templates/new-worker-scheduled.js +17 -0
  289. package/templates/new-worker-scheduled.ts +32 -0
  290. package/templates/new-worker.js +15 -0
  291. package/templates/new-worker.ts +33 -0
  292. package/templates/no-op-worker.js +10 -0
  293. package/templates/pages-dev-pipeline.ts +31 -0
  294. package/templates/pages-dev-util.ts +52 -0
  295. package/templates/pages-shim.ts +12 -0
  296. package/templates/pages-template-plugin.ts +180 -0
  297. package/templates/pages-template-worker.ts +189 -0
  298. package/templates/serve-static-assets.ts +66 -0
  299. package/templates/service-bindings-module-facade.js +55 -0
  300. package/templates/service-bindings-sw-facade.js +42 -0
  301. package/templates/tsconfig-sanity.ts +11 -0
  302. package/templates/tsconfig.init.json +105 -0
  303. package/templates/tsconfig.json +8 -0
  304. package/templates/tsconfig.tsbuildinfo +1 -0
  305. package/wrangler-dist/cli.d.ts +1641 -0
  306. package/wrangler-dist/cli.js +132629 -103948
  307. package/wrangler-dist/wasm-sync.wasm +0 -0
  308. package/src/__tests__/mock-cfetch.js +0 -42
  309. package/src/api/form_data.ts +0 -141
  310. package/src/api/inspect.ts +0 -430
  311. package/src/api/preview.ts +0 -128
  312. package/src/api/worker.ts +0 -161
  313. package/src/cfetch.ts +0 -72
  314. package/src/config.ts +0 -122
  315. package/src/dialogs.tsx +0 -77
  316. package/src/index.tsx +0 -1874
  317. package/src/kv.tsx +0 -211
  318. package/src/pages.tsx +0 -818
  319. package/src/publish.ts +0 -346
  320. package/src/sites.tsx +0 -115
  321. package/src/tail.tsx +0 -71
  322. package/src/user.tsx +0 -1029
  323. package/static-asset-facade.js +0 -47
  324. package/vendor/@cloudflare/kv-asset-handler/CHANGELOG.md +0 -332
  325. package/vendor/@cloudflare/kv-asset-handler/LICENSE_APACHE +0 -176
  326. package/vendor/@cloudflare/kv-asset-handler/LICENSE_MIT +0 -25
  327. package/vendor/@cloudflare/kv-asset-handler/README.md +0 -245
  328. package/vendor/@cloudflare/kv-asset-handler/dist/index.d.ts +0 -32
  329. package/vendor/@cloudflare/kv-asset-handler/dist/index.js +0 -354
  330. package/vendor/@cloudflare/kv-asset-handler/dist/mocks.d.ts +0 -13
  331. package/vendor/@cloudflare/kv-asset-handler/dist/mocks.js +0 -148
  332. package/vendor/@cloudflare/kv-asset-handler/dist/test/getAssetFromKV.d.ts +0 -1
  333. package/vendor/@cloudflare/kv-asset-handler/dist/test/getAssetFromKV.js +0 -436
  334. package/vendor/@cloudflare/kv-asset-handler/dist/test/mapRequestToAsset.d.ts +0 -1
  335. package/vendor/@cloudflare/kv-asset-handler/dist/test/mapRequestToAsset.js +0 -40
  336. package/vendor/@cloudflare/kv-asset-handler/dist/test/serveSinglePageApp.d.ts +0 -1
  337. package/vendor/@cloudflare/kv-asset-handler/dist/test/serveSinglePageApp.js +0 -42
  338. package/vendor/@cloudflare/kv-asset-handler/dist/types.d.ts +0 -26
  339. package/vendor/@cloudflare/kv-asset-handler/dist/types.js +0 -31
  340. package/vendor/@cloudflare/kv-asset-handler/package.json +0 -52
  341. package/vendor/@cloudflare/kv-asset-handler/src/index.ts +0 -296
  342. package/vendor/@cloudflare/kv-asset-handler/src/mocks.ts +0 -136
  343. package/vendor/@cloudflare/kv-asset-handler/src/test/getAssetFromKV.ts +0 -464
  344. package/vendor/@cloudflare/kv-asset-handler/src/test/mapRequestToAsset.ts +0 -33
  345. package/vendor/@cloudflare/kv-asset-handler/src/test/serveSinglePageApp.ts +0 -42
  346. package/vendor/@cloudflare/kv-asset-handler/src/types.ts +0 -39
  347. package/vendor/wrangler-mime/CHANGELOG.md +0 -289
  348. package/vendor/wrangler-mime/LICENSE +0 -21
  349. package/vendor/wrangler-mime/Mime.js +0 -97
  350. package/vendor/wrangler-mime/README.md +0 -187
  351. package/vendor/wrangler-mime/cli.js +0 -46
  352. package/vendor/wrangler-mime/index.js +0 -4
  353. package/vendor/wrangler-mime/lite.js +0 -4
  354. package/vendor/wrangler-mime/package.json +0 -52
  355. package/vendor/wrangler-mime/types/other.js +0 -1
  356. package/vendor/wrangler-mime/types/standard.js +0 -1
  357. package/wrangler-dist/cli.js.map +0 -7
  358. /package/src/__tests__/{clipboardy-mock.js → helpers/clipboardy-mock.js} +0 -0
@@ -0,0 +1,18 @@
1
+ -----BEGIN CERTIFICATE-----
2
+ MIIC6zCCAkygAwIBAgIUI7b68p0pPrCBoW4ptlyvVcPItscwCgYIKoZIzj0EAwQw
3
+ gY0xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T
4
+ YW4gRnJhbmNpc2NvMRgwFgYDVQQKEw9DbG91ZGZsYXJlLCBJbmMxNzA1BgNVBAMT
5
+ LkNsb3VkZmxhcmUgZm9yIFRlYW1zIEVDQyBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkw
6
+ HhcNMjAwMjA0MTYwNTAwWhcNMjUwMjAyMTYwNTAwWjCBjTELMAkGA1UEBhMCVVMx
7
+ EzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lzY28xGDAW
8
+ BgNVBAoTD0Nsb3VkZmxhcmUsIEluYzE3MDUGA1UEAxMuQ2xvdWRmbGFyZSBmb3Ig
9
+ VGVhbXMgRUNDIENlcnRpZmljYXRlIEF1dGhvcml0eTCBmzAQBgcqhkjOPQIBBgUr
10
+ gQQAIwOBhgAEAVdXsX8tpA9NAQeEQalvUIcVaFNDvGsR69ysZxOraRWNGHLfq1mi
11
+ P6o3wtmtx/C2OXG01Cw7UFJbKl5MEDxnT2KoAdFSynSJOF2NDoe5LoZHbUW+yR3X
12
+ FDl+MF6JzZ590VLGo6dPBf06UsXbH7PvHH2XKtFt8bBXVNMa5a21RdmpD0Pho0Uw
13
+ QzAOBgNVHQ8BAf8EBAMCAQYwEgYDVR0TAQH/BAgwBgEB/wIBAjAdBgNVHQ4EFgQU
14
+ YBcQng1AEMMNteuRDAMG0/vgFe0wCgYIKoZIzj0EAwQDgYwAMIGIAkIBQU5OTA2h
15
+ YqmFk8paan5ezHVLcmcucsfYw4L/wmeEjCkczRmCVNm6L86LjhWU0v0wER0e+lHO
16
+ 3efvjbsu8gIGSagCQgEBnyYMP9gwg8l96QnQ1khFA1ljFlnqc2XgJHDSaAJC0gdz
17
+ +NV3JMeWaD2Rb32jc9r6/a7xY0u0ByqxBQ1OQ0dt7A==
18
+ -----END CERTIFICATE-----
package/README.md CHANGED
@@ -1,47 +1,76 @@
1
- ## 🤠 wrangler
1
+ <h1 align="center"> ⛅️ wrangler </h1>
2
+ <section align="center" id="shieldio-badges">
3
+ <a href="https://www.npmjs.com/package/wrangler"><img alt="npm" src="https://img.shields.io/npm/dw/wrangler?style=flat-square"></a>
4
+ <img alt="GitHub contributors" src="https://img.shields.io/github/contributors/cloudflare/workers-sdk?style=flat-square">
5
+ <img alt="GitHub commit activity (branch)" src="https://img.shields.io/github/commit-activity/w/cloudflare/workers-sdk/main?style=flat-square">
6
+ <a href="https://discord.gg/CloudflareDev"><img alt="Discord" src="https://img.shields.io/discord/595317990191398933?color=%23F48120&style=flat-square"></a>
7
+ </section>
2
8
 
3
- `wrangler` is a command line tool for building [Cloudflare Workers](https://workers.cloudflare.com/).
4
-
5
- [(Read the full stack week launch blog post.)](https://blog.cloudflare.com/wrangler-v2-beta/)
6
-
7
- **DISCLAIMER**: This is a work in progress, and is NOT recommended for use in production. We are opening this preview for feedback from the community, and to openly share our [roadmap](https://github.com/cloudflare/wrangler2/issues/12) for the future. As such, expect APIs and documentation to change before the end of the preview.
9
+ > This package is for wrangler v2.x, released first in May 2022. If you're looking for v1.x of the `@cloudflare/wrangler` package, visit https://www.npmjs.com/package/@cloudflare/wrangler / https://github.com/cloudflare/wrangler-legacy.
8
10
 
9
- Further, we will NOT do a general release until we are both feature complete, and have a full backward compatibility and incremental migration plan in place. For more details, follow the [parent roadmap issue](https://github.com/cloudflare/wrangler2/issues/12).
11
+ `wrangler` is a command line tool for building [Cloudflare Workers](https://workers.cloudflare.com/).
10
12
 
11
13
  ## Quick Start
12
14
 
13
15
  ```bash
14
16
  # Make a javascript file
15
- $ echo "export default { fetch() { return new Response('hello world') } }" > index.js
17
+ echo "export default { fetch() { return new Response('hello world') } }" > index.js
16
18
  # try it out
17
- $ npx wrangler@beta dev index.js
19
+ npx wrangler dev index.js
18
20
  # and then publish it
19
- $ npx wrangler@beta publish index.js --name my-worker
21
+ npx wrangler publish index.js --name my-worker
20
22
  # visit https://my-worker.<your workers subdomain>.workers.dev
21
23
  ```
22
24
 
25
+ ## Create a Project
26
+
27
+ ```bash
28
+ # Generate a new project
29
+ npx wrangler init my-worker
30
+ # try it out
31
+ cd my-worker && npm run start
32
+ # and then publish it
33
+ npm run deploy
34
+ ```
35
+
23
36
  ## Installation:
24
37
 
25
38
  ```bash
26
- $ npm install wrangler@beta
39
+ $ npm install wrangler --save-dev
27
40
  ```
28
41
 
42
+ ## Configuration:
43
+
44
+ Wrangler is configured via a `wrangler.toml` file in the project root. When utilizing the `wrangler init` command, a `wrangler.toml` file will be created for you.
45
+
46
+ example:
47
+
48
+ ```toml
49
+ main = "./src/index.ts" # init w/ TypeScript
50
+ name = "my-worker"
51
+ compatibility_date = "YYY-MM-DD"
52
+ ```
53
+
54
+ for more detailed information about configuration, see the [documentation](https://developers.cloudflare.com/workers/cli-wrangler/configuration)
55
+
29
56
  ## Commands
30
57
 
31
58
  ### `wrangler init [name]`
32
59
 
33
- Creates a `wrangler.toml` configuration file. For more details on the configuration keys and values, refer to the [documentation](https://developers.cloudflare.com/workers/cli-wrangler/configuration).
60
+ Creates a Worker project. For details on configuration keys and values, refer to the [documentation](https://developers.cloudflare.com/workers/wrangler/commands/#init).
34
61
 
35
- ### `wrangler dev [script]`
62
+ ### `wrangler dev`
36
63
 
37
64
  Start a local development server, with live reloading and devtools.
38
65
 
39
- ### `wrangler publish [script] --name [name]`
66
+ ### `wrangler publish`
40
67
 
41
68
  Publish the given script to the worldwide Cloudflare network.
42
69
 
43
70
  For more commands and options, refer to the [documentation](https://developers.cloudflare.com/workers/cli-wrangler/commands).
44
71
 
72
+ ## Pages
73
+
45
74
  ### `wrangler pages dev [directory] [-- command]`
46
75
 
47
76
  Either serves a static build asset directory, or proxies itself in front of a command.
@@ -49,3 +78,7 @@ Either serves a static build asset directory, or proxies itself in front of a co
49
78
  Builds and runs functions from a `./functions` directory or uses a `_worker.js` file inside the static build asset directory.
50
79
 
51
80
  For more commands and options, refer to the [documentation](https://developers.cloudflare.com/pages/platform/functions#develop-and-preview-locally) or run `wrangler pages dev --help`.
81
+
82
+ ## Documentation
83
+
84
+ For the latest Wrangler documentation, [click here](https://developers.cloudflare.com/workers/wrangler/).
package/bin/wrangler.js CHANGED
@@ -1,36 +1,188 @@
1
1
  #!/usr/bin/env node
2
2
  const { spawn } = require("child_process");
3
- const { join } = require("path");
4
- const semiver = require("semiver");
3
+ const path = require("path");
4
+ const fs = require("fs");
5
+ const os = require("os");
5
6
 
6
- const MIN_NODE_VERSION = "16.7.0";
7
+ const MIN_NODE_VERSION = "16.13.0";
8
+ const debug =
9
+ process.env["WRANGLER_LOG"] === "debug"
10
+ ? (...args) => console.log(...args)
11
+ : () => {};
12
+
13
+ let wranglerProcess;
14
+
15
+ /**
16
+ * Executes ../wrangler-dist/cli.js
17
+ */
18
+ function runWrangler() {
19
+ if (semiver(process.versions.node, MIN_NODE_VERSION) < 0) {
20
+ // Note Volta and nvm are also recommended in the official docs:
21
+ // https://developers.cloudflare.com/workers/get-started/guide#2-install-the-workers-cli
22
+ console.error(
23
+ `Wrangler requires at least Node.js v${MIN_NODE_VERSION}. You are using v${process.versions.node}. Please update your version of Node.js.
7
24
 
8
- async function main() {
9
- if (semiver(process.versions.node, MIN_NODE_VERSION) < 0) {
10
- // Note Volta and nvm are also recommended in the official docs:
11
- // https://developers.cloudflare.com/workers/get-started/guide#2-install-the-workers-cli
12
- console.error(
13
- `Wrangler requires at least Node.js v${MIN_NODE_VERSION}. You are using v${process.versions.node}.
14
- You should use the latest Node.js version if possible, as Cloudflare Workers use a very up-to-date version of V8.
15
25
  Consider using a Node.js version manager such as https://volta.sh/ or https://github.com/nvm-sh/nvm.`
16
- );
17
- process.exitCode = 1;
18
- return;
19
- }
20
-
21
- spawn(
22
- process.execPath,
23
- [
24
- "--no-warnings",
25
- "--experimental-vm-modules",
26
- ...process.execArgv,
27
- join(__dirname, "../wrangler-dist/cli.js"),
28
- ...process.argv.slice(2),
29
- ],
30
- { stdio: "inherit" }
31
- ).on("exit", (code) =>
32
- process.exit(code === undefined || code === null ? 0 : code)
33
- );
26
+ );
27
+ process.exitCode = 1;
28
+ return;
29
+ }
30
+
31
+ let pathToCACerts = process.env.NODE_EXTRA_CA_CERTS;
32
+ if (pathToCACerts) {
33
+ // TODO:
34
+ // - should we log a warning here?
35
+ // - maybe we can generate a certificate that concatenates with ours?
36
+ //
37
+ // I do think it'll be rare that someone wants to add a cert AND
38
+ // use Cloudflare WARP, but let's wait till the situation actually
39
+ // arises before we do anything about it
40
+ } else {
41
+ const osTempDir = os.tmpdir();
42
+ const certDir = path.join(osTempDir, "wrangler-cert");
43
+ const certPath = path.join(certDir, "Cloudflare_CA.pem");
44
+ // copy cert to the system temp dir if needed
45
+ if (!fs.existsSync(certPath)) {
46
+ fs.mkdirSync(certDir, { recursive: true });
47
+ fs.writeFileSync(
48
+ certPath,
49
+ fs.readFileSync(path.join(__dirname, "../Cloudflare_CA.pem"), "utf-8")
50
+ );
51
+ }
52
+ pathToCACerts = certPath;
53
+ }
54
+
55
+ return spawn(
56
+ process.execPath,
57
+ [
58
+ "--no-warnings",
59
+ "--experimental-vm-modules",
60
+ ...process.execArgv,
61
+ path.join(__dirname, "../wrangler-dist/cli.js"),
62
+ ...process.argv.slice(2),
63
+ ],
64
+ {
65
+ stdio: ["inherit", "inherit", "inherit", "ipc"],
66
+ env: {
67
+ ...process.env,
68
+ NODE_EXTRA_CA_CERTS: pathToCACerts,
69
+ },
70
+ }
71
+ )
72
+ .on("exit", (code) =>
73
+ process.exit(code === undefined || code === null ? 0 : code)
74
+ )
75
+ .on("message", (message) => {
76
+ if (process.send) {
77
+ process.send(message);
78
+ }
79
+ });
80
+ }
81
+
82
+ /**
83
+ * Runs a locally-installed version of wrangler, delegating from this version.
84
+ * @throws {MODULE_NOT_FOUND} if there isn't a locally installed version of wrangler.
85
+ */
86
+ function runDelegatedWrangler() {
87
+ const packageJsonPath = require.resolve("wrangler/package.json", {
88
+ paths: [process.cwd()],
89
+ });
90
+ const {
91
+ bin: { wrangler: binaryPath },
92
+ version,
93
+ } = JSON.parse(fs.readFileSync(packageJsonPath));
94
+ const resolvedBinaryPath = path.resolve(packageJsonPath, "..", binaryPath);
95
+
96
+ // Make sure the user knows we're delegating to a different installation
97
+ const currentPackageJsonPath = path.resolve(__dirname, "..", "package.json");
98
+ const currentPackage = JSON.parse(fs.readFileSync(currentPackageJsonPath));
99
+ const argv = process.argv.slice(2).join(" ");
100
+ console.log(
101
+ `Delegating to locally-installed wrangler@${version} over global wrangler@${currentPackage.version}...
102
+ Run \`npx wrangler ${argv}\` to use the local version directly.
103
+ `
104
+ );
105
+
106
+ // this call to `spawn` is simpler because the delegated version will do all
107
+ // of the other work.
108
+ return spawn(
109
+ process.execPath,
110
+ [resolvedBinaryPath, ...process.argv.slice(2)],
111
+ {
112
+ stdio: ["inherit", "inherit", "inherit", "ipc"],
113
+ }
114
+ )
115
+ .on("exit", (code) =>
116
+ process.exit(code === undefined || code === null ? 0 : code)
117
+ )
118
+ .on("message", (message) => {
119
+ if (process.send) {
120
+ process.send(message);
121
+ }
122
+ });
123
+ }
124
+
125
+ /**
126
+ * Indicates if this invocation of `wrangler` should delegate
127
+ * to a locally-installed version.
128
+ */
129
+ function shouldDelegate() {
130
+ try {
131
+ // `require.resolve` will throw if it can't find
132
+ // a locally-installed version of `wrangler`
133
+ const delegatedPackageJson = require.resolve("wrangler/package.json", {
134
+ paths: [process.cwd()],
135
+ });
136
+ const thisPackageJson = path.resolve(__dirname, "..", "package.json");
137
+ // if it's the same path, then we're already a local install -- no need to delegate
138
+ return thisPackageJson !== delegatedPackageJson;
139
+ } catch (e) {
140
+ // there's no local version to delegate to -- `require.resolve` threw
141
+ return false;
142
+ }
143
+ }
144
+
145
+ async function main() {
146
+ wranglerProcess = shouldDelegate() ? runDelegatedWrangler() : runWrangler();
34
147
  }
35
148
 
149
+ process.on("SIGINT", () => {
150
+ wranglerProcess && wranglerProcess.kill();
151
+ });
152
+ process.on("SIGTERM", () => {
153
+ wranglerProcess && wranglerProcess.kill();
154
+ });
155
+
156
+ // semiver implementation via https://github.com/lukeed/semiver/blob/ae7eebe6053c96be63032b14fb0b68e2553fcac4/src/index.js
157
+
158
+ /**
159
+ MIT License
160
+
161
+ Copyright (c) Luke Edwards <luke.edwards05@gmail.com> (lukeed.com)
162
+
163
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
164
+
165
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
166
+
167
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
168
+
169
+ */
170
+
171
+ var fn = new Intl.Collator(0, { numeric: 1 }).compare;
172
+
173
+ function semiver(a, b, bool) {
174
+ a = a.split(".");
175
+ b = b.split(".");
176
+
177
+ return (
178
+ fn(a[0], b[0]) ||
179
+ fn(a[1], b[1]) ||
180
+ ((b[2] = b.slice(2).join(".")),
181
+ (bool = /[.-]/.test((a[2] = a.slice(2).join(".")))),
182
+ bool == /[.-]/.test(b[2]) ? fn(a[2], b[2]) : bool ? -1 : 1)
183
+ );
184
+ }
185
+
186
+ // end semiver implementation
187
+
36
188
  void main();
@@ -0,0 +1 @@
1
+ export * from "@cloudflare/kv-asset-handler";