mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-05-07 13:05:18 +08:00
Add gating to the JS delta client on the remote debugger
Reviewed By: jeanlauliac Differential Revision: D5940923 fbshipit-source-id: 1ef4cd52ef3567f2e726217636253802a2e6bb40
This commit is contained in:
committed by
Facebook Github Bot
parent
b3fc64285e
commit
a0e88c2a5b
@@ -14,8 +14,8 @@ const launchChrome = require('../util/launchChrome');
|
||||
|
||||
const {exec} = require('child_process');
|
||||
|
||||
function launchChromeDevTools(port) {
|
||||
var debuggerURL = 'http://localhost:' + port + '/debugger-ui';
|
||||
function launchChromeDevTools(port, args = '') {
|
||||
var debuggerURL = 'http://localhost:' + port + '/debugger-ui' + args;
|
||||
console.log('Launching Dev Tools...');
|
||||
launchChrome(debuggerURL);
|
||||
}
|
||||
@@ -25,7 +25,10 @@ function escapePath(pathname) {
|
||||
return '"' + pathname + '"';
|
||||
}
|
||||
|
||||
function launchDevTools({port, projectRoots}, isChromeConnected) {
|
||||
function launchDevTools(
|
||||
{port, projectRoots, useDeltaBundler},
|
||||
isChromeConnected,
|
||||
) {
|
||||
// Explicit config always wins
|
||||
var customDebugger = process.env.REACT_DEBUGGER;
|
||||
if (customDebugger) {
|
||||
@@ -39,7 +42,7 @@ function launchDevTools({port, projectRoots}, isChromeConnected) {
|
||||
});
|
||||
} else if (!isChromeConnected()) {
|
||||
// Dev tools are not yet open; we need to open a session
|
||||
launchChromeDevTools(port);
|
||||
launchChromeDevTools(port, useDeltaBundler ? '#useDeltaBundler' : '');
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user