Skip to content

Commit 79ded77

Browse files
huntiefacebook-github-bot
authored andcommitted
Disable --experimental-debugger by default (#40795)
Summary: Pull Request resolved: #40795 Changelog: [Internal] Reviewed By: hoxyq Differential Revision: D50178494 fbshipit-source-id: b833b6accadd2902d97a45e030cd48d1b62ac438
1 parent 8f7ffc4 commit 79ded77

File tree

1 file changed

+1
-4
lines changed
  • packages/community-cli-plugin/src/commands/start

1 file changed

+1
-4
lines changed

packages/community-cli-plugin/src/commands/start/index.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -96,14 +96,11 @@ const startCommand: Command = {
9696
description: 'Disables interactive mode',
9797
},
9898
{
99-
name: '--experimental-debugger [bool]',
99+
name: '--experimental-debugger',
100100
description:
101101
"[Experimental] Enable the new debugger experience and 'j' to " +
102102
'debug. This enables the new frontend experience only: connection ' +
103103
'reliability and some basic features are unstable in this release.',
104-
parse: (val: ?string): boolean =>
105-
val !== undefined && val !== 'false' && val !== '0',
106-
default: true,
107104
},
108105
],
109106
};

0 commit comments

Comments
 (0)