You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
react-dev-utils@12.0.0 function startBrowserProcess is calling npm package open function open with wrongly shaped parameter.
Detected on LinuxOS.
Call from react-dev-utils/openBrowser.js/startBrowserProcess to open/open(url,options) is using wrong form for the options parameter. As a result, when using environment variable BROWSER, that value gets ignored and the default browser is opened instead.
Describe the bug
react-dev-utils@12.0.0
functionstartBrowserProcess
is calling npm packageopen
functionopen
with wrongly shaped parameter.Detected on LinuxOS.
Call from
react-dev-utils/openBrowser.js/startBrowserProcess
toopen/open(url,options)
is using wrong form for theoptions
parameter. As a result, when using environment variableBROWSER
, that value gets ignored and the default browser is opened instead.react-dev-utils/openBrowser.js/startBrowserProcess
The value of
browser
is the BROWSER env value, but the propertyapp
should be an objectinstead. Here are the usage examples provided by the
open
npm package page:The text was updated successfully, but these errors were encountered: