Minor Changes
-
#3951
e0850ad1
Thanks @mrbbot! - feat: add support for breakpoint debugging towrangler dev
's--remote
and--no-bundle
modesPreviously, breakpoint debugging using Wrangler's DevTools was only supported
in local mode, when using Wrangler's built-in bundler. This change extends that
to remote development, and--no-bundle
.When using
--remote
and--no-bundle
together, uncaught errors will now be
source-mapped when logged too. -
#3951
e0850ad1
Thanks @mrbbot! - feat: add support for Visual Studio Code's built-in breakpoint debuggerWrangler now supports breakpoint debugging with Visual Studio Code's debugger.
Create a.vscode/launch.json
file with the following contents...{ "configurations": [ { "name": "Wrangler", "type": "node", "request": "attach", "port": 9229, "cwd": "/", "resolveSourceMapLocations": null, "attachExistingChildren": false, "autoAttachChildProcesses": false } ] }
...then run
wrangler dev
, and launch the configuration.
Patch Changes
-
#3954
bc88f0ec
Thanks @dario-piotrowicz! - updatewrangler pages dev
D1 and DO descriptions -
#3928
95b24b1e
Thanks @JacobMGEvans! - Colorize Deployed Bundle Size
Most bundlers, and other tooling that give you size outputs will colorize their the text to indicate if the value is within certain ranges.
The current range values are:
red 100% - 90%
yellow 89% - 70%
green <70%resolves #1312