UNPKG

nativescript

Version:

Command-line interface for building NativeScript projects

51 lines 2.45 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.DebugServiceBase = void 0; const events_1 = require("events"); class DebugServiceBase extends events_1.EventEmitter { constructor(device, $devicesService) { super(); this.device = device; this.$devicesService = $devicesService; } getCanExecuteAction(deviceIdentifier) { return (device) => { if (deviceIdentifier) { let isSearchedDevice = device.deviceInfo.identifier === deviceIdentifier; if (!isSearchedDevice) { const deviceByDeviceOption = this.$devicesService.getDeviceByDeviceOption(); isSearchedDevice = deviceByDeviceOption && device.deviceInfo.identifier === deviceByDeviceOption.deviceInfo.identifier; } return isSearchedDevice; } else { return true; } }; } getChromeDebugUrl(debugOptions, port) { // corresponds to 55.0.2883 Chrome version // SHA is taken from https://chromium.googlesource.com/chromium/src/+/55.0.2883.100 // This SHA is old and does not support debugging with HMR. // In case we want to stick with concrete SHA, get it from one of the tags https://chromium.googlesource.com/chromium/src/ // IMPORTANT: When you get the SHA, ensure you are using the `parent` commit, not the actual one. // Using the actual commit will result in 404 error in the remote serve. const commitSHA = debugOptions.devToolsCommit || "02e6bde1bbe34e43b309d4ef774b1168d25fd024"; const devToolsProtocol = `devtools`; let chromeDevToolsPrefix = `${devToolsProtocol}://devtools/remote/serve_file/@${commitSHA}`; if (debugOptions.useBundledDevTools === undefined || debugOptions.useBundledDevTools) { chromeDevToolsPrefix = `${devToolsProtocol}://devtools/bundled`; } if (debugOptions.useHttpUrl) { chromeDevToolsPrefix = `https://chrome-devtools-frontend.appspot.com/serve_file/@${commitSHA}`; } const chromeUrl = `${chromeDevToolsPrefix}/inspector.html?ws=localhost:${port}`; return chromeUrl; } } exports.DebugServiceBase = DebugServiceBase; //# sourceMappingURL=debug-service-base.js.map