Skip to content

Commit 589b41a

Browse files
authoredFeb 11, 2020
update open to v7.0.2 (#8459)
1 parent 865ea05 commit 589b41a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎packages/react-dev-utils/openBrowser.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ function startBrowserProcess(browser, url, args) {
123123
// Fallback to open
124124
// (It will always open new tab)
125125
try {
126-
var options = { app: browser, wait: false };
126+
var options = { app: browser, wait: false, url: true };
127127
open(url, options).catch(() => {}); // Prevent `unhandledRejection` error.
128128
return true;
129129
} catch (err) {

‎packages/react-dev-utils/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
"inquirer": "7.0.4",
7070
"is-root": "2.1.0",
7171
"loader-utils": "1.2.3",
72-
"open": "^6.4.0",
72+
"open": "^7.0.2",
7373
"pkg-up": "3.1.0",
7474
"react-error-overlay": "^6.0.5",
7575
"recursive-readdir": "2.2.2",

0 commit comments

Comments
 (0)
Please sign in to comment.