Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
update dependencies
  • Loading branch information
IrosTheBeggar committed Mar 24, 2022
1 parent c94c5c5 commit f037aa9
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 36 deletions.
46 changes: 23 additions & 23 deletions cli-boot-wrapper.js
Expand Up @@ -4,27 +4,27 @@
// Check if we are in an electron environment
if (process.versions["electron"]) {
// off to a separate electron boot environment
return require("./build/electron");
require("./build/electron");
} else {
const program = require('commander');
program
.version(require('./package.json').version)
.option('-j, --json <json>', 'Specify JSON Boot File', require('path').join(__dirname, 'save/conf/default.json'))
.parse(process.argv);

console.clear();
console.log(`
____ _
_ __ ___ / ___|| |_ _ __ ___ __ _ _ __ ___
| '_ \` _ \\\\___ \\| __| '__/ _ \\/ _\` | '_ \` _ \\
| | | | | |___) | |_| | | __/ (_| | | | | | |
|_| |_| |_|____/ \\__|_| \\___|\\__,_|_| |_| |_|`);
console.log(`v${program.version()}`);
console.log();
console.log('Check out our Discord server:');
console.log('https://discord.gg/AM896Rr');
console.log();

// Boot the server
require("./src/server").serveIt(program.opts().json);
}

const program = require('commander');
program
.version(require('./package.json').version)
.option('-j, --json <json>', 'Specify JSON Boot File', require('path').join(__dirname, 'save/conf/default.json'))
.parse(process.argv);

console.clear();
console.log(`
____ _
_ __ ___ / ___|| |_ _ __ ___ __ _ _ __ ___
| '_ \` _ \\\\___ \\| __| '__/ _ \\/ _\` | '_ \` _ \\
| | | | | |___) | |_| | | __/ (_| | | | | | |
|_| |_| |_|____/ \\__|_| \\___|\\__,_|_| |_| |_|`);
console.log(`v${program.version()}`);
console.log();
console.log('Check out our Discord server:');
console.log('https://discord.gg/AM896Rr');
console.log();

// Boot the server
require("./src/server").serveIt(program.json);
26 changes: 13 additions & 13 deletions package.json
Expand Up @@ -91,14 +91,14 @@
},
"dependencies": {
"archiver": "^5.3.0",
"axios": "^0.25.0",
"busboy": "^1.4.0",
"commander": "^6.2.1",
"axios": "^0.26.1",
"busboy": "^1.5.0",
"commander": "^9.1.0",
"cookie-parser": "^1.4.6",
"electron-updater": "^4.6.1",
"electron-updater": "^4.6.5",
"escape-string-regexp": "^4.0.0",
"express": "^4.17.2",
"fast-xml-parser": "^3.20.0",
"express": "^4.17.3",
"fast-xml-parser": "^4.0.7",
"ffbinaries": "^1.1.4",
"fluent-ffmpeg": "^2.1.2",
"http-proxy": "^1.18.1",
Expand All @@ -108,15 +108,15 @@
"lokijs": "^1.5.12",
"m3u8-parser": "^4.7.0",
"make-dir": "^3.1.0",
"mime-types": "^2.1.34",
"music-metadata": "^7.11.7",
"nanoid": "^3.2.0",
"mime-types": "^2.1.35",
"music-metadata": "^7.12.2",
"nanoid": "^3.3.1",
"tree-kill": "^1.2.2",
"winston": "^3.5.0",
"winston-daily-rotate-file": "^4.6.0",
"ws": "^8.4.2"
"winston": "^3.6.0",
"winston-daily-rotate-file": "^4.6.1",
"ws": "^8.5.0"
},
"devDependencies": {
"electron-builder": "22.11.7"
"electron-builder": "22.14.13"
}
}

0 comments on commit f037aa9

Please sign in to comment.