updated npm modules

This commit is contained in:
2019-05-20 20:43:45 -05:00
parent 2319197b81
commit f166b72b7d
1113 changed files with 8758 additions and 12227 deletions

3
node_modules/opn/index.js generated vendored
View File

@@ -50,7 +50,8 @@ module.exports = (target, opts) => {
if (opts.app) {
cmd = opts.app;
} else {
cmd = process.platform === 'android' ? 'xdg-open' : path.join(__dirname, 'xdg-open');
const useSystemXdgOpen = process.versions.electron || process.platform === 'android';
cmd = useSystemXdgOpen ? 'xdg-open' : path.join(__dirname, 'xdg-open');
}
if (appArgs.length > 0) {