Minor Changes
-
#6392
c3e19b7
Thanks @taylorlee! - feat: log Worker startup time in theversion upload
command -
#6370
8a3c6c0
Thanks @CarmenPopoviciu! - feat: Create very basic Asset Server Worker and plumb it intowrangler dev
These changes do the ground work needed in order to add Assets support for Workers in
wrangler dev
. They implement the following:- it creates a new package called
workers-shared
that hosts theAsset Server Worker
, and theRouter Worker
in the future - it scaffolds the
Asset Server Worker
in some very basic form, with basic configuration. Further behaviour implementation will follow in a subsequent PR - it does the ground work of plumbing ASW into Miniflare
- it creates a new package called
Patch Changes
-
#6392
c3e19b7
Thanks @taylorlee! - fix: remove bundle size warning from Worker deploy commandsBundle size was a proxy for startup time. Now that we have startup time
reported, focus on bundle size is less relevant.