This commit is contained in:
Evert Prants 2023-08-02 20:00:07 +03:00
parent 3b476e1780
commit 398018bf50
Signed by: evert
GPG Key ID: 1688DA83D222D0B5
4 changed files with 1128 additions and 1172 deletions

2270
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
{
"name": "@squeebot/cli",
"version": "3.5.1",
"version": "3.6.0",
"description": "Squeebot v3 runtime, environments and configuration",
"main": "dist/squeebot.js",
"bin": {
@ -21,19 +21,19 @@
"author": "Evert \"Diamond\" Prants <evert@lunasqu.ee>",
"license": "MIT",
"devDependencies": {
"@types/fs-extra": "^9.0.12",
"@types/node": "^16.7.10",
"@types/tar": "^4.0.5",
"@types/yargs": "^17.0.2",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"eslint": "^8.4.1",
"typescript": "^4.4.2"
"@types/fs-extra": "^11.0.1",
"@types/node": "^20.4.5",
"@types/tar": "^6.1.5",
"@types/yargs": "^17.0.24",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"eslint": "^8.46.0",
"typescript": "^5.1.6"
},
"dependencies": {
"@squeebot/core": "^3.4.0",
"fs-extra": "^10.0.0",
"node-watch": "^0.7.1",
"tar": "^6.1.11",
"yargs": "^17.1.1"
"@squeebot/core": "^3.6.0-1",
"fs-extra": "^11.1.1",
"node-watch": "^0.7.4",
"tar": "^6.1.15",
"yargs": "^17.7.2"
}
}

View File

@ -336,7 +336,7 @@ export class SqueebotCLI {
for (const argv of cmds) {
if (!argv[0]) {
logger.log('Available CLI Commands:', this.cmds
.map(c => `(${c.name.charAt(0)})${c.name.substr(1)}`)
.map(c => `(${c.name.charAt(0)})${c.name.substring(1)}`)
.join(', '));
continue;
}

View File

@ -40,7 +40,7 @@
// "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */
/* Module Resolution Options */
"moduleResolution": "node", /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */
"moduleResolution": "Node", /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */
// "baseUrl": "./", /* Base directory to resolve non-absolute module names. */
// "paths": {}, /* A series of entries which re-map imports to lookup locations relative to the 'baseUrl'. */
// "rootDirs": [], /* List of root folders whose combined content represents the structure of the project at runtime. */