Add new Bds Maneger Core CLI #194

Merged
Sirherobrine23 merged 12 commits from CLI into main 2021-09-25 06:20:18 +00:00
4 changed files with 6 additions and 10 deletions
Showing only changes of commit 63267b5ade - Show all commits

View File

@ -8,7 +8,7 @@ Any contribution is welcome, but before a look at [CONTRIBUTING.md](CONTRIBUTING
### All ### All
* [Nodejs 14+](https://nodejs.org/en/download/) * [Nodejs 15.6.0+](https://nodejs.org/en/download/current/)
* [OpenJDK 16+](https://www.oracle.com/java/technologies/javase-jdk16-downloads.html) * [OpenJDK 16+](https://www.oracle.com/java/technologies/javase-jdk16-downloads.html)
### Windows 10+ ### Windows 10+

View File

@ -2,7 +2,7 @@
const { resolve } = require("path"); const { resolve } = require("path");
const path = require("path") const path = require("path")
const fs = require("fs"); const fs = require("fs");
const randomUUID = require("uuid").v4; const { randomUUID } = require("crypto");
const { bds_dir } = require("./lib/BdsSettings"); const { bds_dir } = require("./lib/BdsSettings");
require("./lib/Requests") require("./lib/Requests")

6
package-lock.json generated
View File

@ -30,9 +30,7 @@
"ora": "^6.0.1", "ora": "^6.0.1",
"properties-to-json": "^0.2.1", "properties-to-json": "^0.2.1",
"request-ip": "^2.1.3", "request-ip": "^2.1.3",
"serverline": "^1.5.0", "telegraf": "^4.0.0"
"telegraf": "^4.0.0",
"uuid": "^8.3.2"
}, },
"bin": { "bin": {
"bds_maneger": "bin/bds_maneger.js", "bds_maneger": "bin/bds_maneger.js",
@ -45,7 +43,7 @@
"os-tmpdir": "^2.0.0" "os-tmpdir": "^2.0.0"
}, },
"engines": { "engines": {
"node": ">=14", "node": ">=15.6.0",
"npm": ">=7" "npm": ">=7"
} }
}, },

View File

@ -44,7 +44,7 @@
}, },
"homepage": "https://docs.bdsmaneger.com/Bds Maneger core", "homepage": "https://docs.bdsmaneger.com/Bds Maneger core",
"engines": { "engines": {
"node": ">=14", "node": ">=15.6.0",
"npm": ">=7" "npm": ">=7"
}, },
"dependencies": { "dependencies": {
@ -69,9 +69,7 @@
"ora": "^6.0.1", "ora": "^6.0.1",
"properties-to-json": "^0.2.1", "properties-to-json": "^0.2.1",
"request-ip": "^2.1.3", "request-ip": "^2.1.3",
"serverline": "^1.5.0", "telegraf": "^4.0.0"
"telegraf": "^4.0.0",
"uuid": "^8.3.2"
}, },
"devDependencies": { "devDependencies": {
"docker-run_build": "*", "docker-run_build": "*",