mirror of
https://github.com/AleziaKurdis/overte.git
synced 2025-04-06 02:13:10 +02:00
Merge pull request #14049 from birarda/security-vuln
update some server console dependencies after npm audit
This commit is contained in:
commit
b007e4d874
3 changed files with 906 additions and 1025 deletions
1907
server-console/package-lock.json
generated
1907
server-console/package-lock.json
generated
File diff suppressed because it is too large
Load diff
|
@ -8,8 +8,8 @@
|
|||
""
|
||||
],
|
||||
"devDependencies": {
|
||||
"electron-packager": "^12.0.0",
|
||||
"electron": "1.8.4"
|
||||
"electron": "^3.0.0",
|
||||
"electron-packager": "^12.1.2"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -23,14 +23,15 @@
|
|||
"packager": "node packager.js"
|
||||
},
|
||||
"dependencies": {
|
||||
"always-tail": "0.2.0",
|
||||
"cheerio": "^0.19.0",
|
||||
"always-tail": "^0.2.0",
|
||||
"cheerio": "^0.22.0",
|
||||
"debug": "^4.0.1",
|
||||
"electron-log": "1.1.1",
|
||||
"extend": "^3.0.0",
|
||||
"fs-extra": "^6.0.0",
|
||||
"node-notifier": "^5.2.1",
|
||||
"os-homedir": "^1.0.1",
|
||||
"request": "^2.85.0",
|
||||
"request": "^2.88.0",
|
||||
"request-progress": "1.0.2",
|
||||
"tar-fs": "^1.12.0",
|
||||
"yargs": "^3.30.0"
|
||||
|
|
|
@ -247,15 +247,12 @@ process.on('uncaughtException', function(err) {
|
|||
log.error(err.stack);
|
||||
});
|
||||
|
||||
var shouldQuit = app.makeSingleInstance(function(commandLine, workingDirectory) {
|
||||
// Someone tried to run a second instance, focus the window (if there is one)
|
||||
return true;
|
||||
});
|
||||
const gotTheLock = app.requestSingleInstanceLock()
|
||||
|
||||
if (shouldQuit) {
|
||||
log.warn("Another instance of the Sandbox is already running - this instance will quit.");
|
||||
app.exit(0);
|
||||
return;
|
||||
if (!gotTheLock) {
|
||||
log.warn("Another instance of the Sandbox is already running - this instance will quit.");
|
||||
app.exit(0);
|
||||
return;
|
||||
}
|
||||
|
||||
// Check command line arguments to see how to find binaries
|
||||
|
|
Loading…
Reference in a new issue