Patch Changes
-
#1474
f602df7
Thanks @threepointone! - fix: enable debugger in local modeDuring a refactor, we missed enabling the inspector by default in local mode. We also broke the logic that detects the inspector url exposed by the local server. This patch passes the argument correctly, fixes the detection logic. Further, it also lets you disable the inspector altogether with
--inspect false
, if required (for both remote and local mode).Fixes #1436
-
#1470
01f49f1
Thanks @petebacondarwin! - fix: ensure that metrics user interactions do not break other UIThe new metrics usage capture may interact with the user if they have not yet set their metrics permission.
Sending metrics was being done concurrently with other commands, so there was a chance that the metrics UI broke the other command's UI.
Now we ensure that metrics UI will happen synchronously.