microsoft/vscode-react-native

Public

mirrored from https://github.com/microsoft/vscode-react-nativeAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
indexed-sourcemap-null-section-issue

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

js-patched/opn-main.js

16lines · modeblame

b8ecee4ddigeff10 years ago1// Copyright (c) Microsoft Corporation. All rights reserved.
2// Licensed under the MIT license. See LICENSE file in the project root for details.
3
1011f2a8Meena Kunnathur Balakrishnan10 years ago4'use strict';
5var opn = require('./index.js');
6
b031edc7digeff10 years ago7module.exports = function(target, opts, cb) {
1011f2a8Meena Kunnathur Balakrishnan10 years ago8if (process.env.REACT_DEBUGGER) {
9if (opts.app) {
10console.log("Debugger for React Native is configured. Skipping launch of " + opts.app);
11}
12return;
13}
14
b031edc7digeff10 years ago15return opn(target, opts, cb);
1011f2a8Meena Kunnathur Balakrishnan10 years ago16};