chore: update dependencies (#11697)

This commit is contained in:
Lucian Mocanu 2025-09-30 22:49:42 +02:00 committed by GitHub
parent 7fb6ba7ed9
commit b59c906f49
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 514 additions and 570 deletions

1019
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -96,20 +96,20 @@
},
"dependencies": {
"@sqltools/formatter": "^1.2.5",
"ansis": "^4.1.0",
"ansis": "^4.2.0",
"app-root-path": "^3.1.0",
"buffer": "^6.0.3",
"dayjs": "^1.11.18",
"debug": "^4.4.3",
"dedent": "^1.7.0",
"dotenv": "^16.6.1",
"dotenv": "^17.2.3",
"glob": "^10.4.5",
"reflect-metadata": "^0.2.2",
"sha.js": "^2.4.12",
"sql-highlight": "^6.1.0",
"tslib": "^2.8.1",
"uuid": "^11.1.0",
"yargs": "^17.7.2"
"yargs": "^18.0.0"
},
"devDependencies": {
"@eslint/js": "^9.36.0",
@ -133,7 +133,7 @@
"chai-as-promised": "^7.1.2",
"class-transformer": "^0.5.1",
"eslint": "^9.36.0",
"eslint-plugin-jsdoc": "^60.3.0",
"eslint-plugin-jsdoc": "^60.6.0",
"globals": "^16.4.0",
"gulp": "^4.0.2",
"gulp-rename": "^2.1.0",
@ -144,10 +144,10 @@
"gulpclass": "^0.2.0",
"husky": "^9.1.7",
"is-ci": "^4.1.0",
"lint-staged": "^15.5.2",
"mocha": "^11.7.2",
"lint-staged": "^16.2.3",
"mocha": "^11.7.3",
"mongodb": "^6.20.0",
"mssql": "^11.0.1",
"mssql": "^12.0.0",
"mysql": "^2.18.1",
"mysql2": "^3.15.1",
"nyc": "^17.1.0",
@ -161,14 +161,14 @@
"rimraf": "^5.0.10",
"sinon": "^16.1.3",
"sinon-chai": "^3.7.0",
"sort-package-json": "^2.15.1",
"sort-package-json": "^3.4.0",
"source-map-support": "^0.5.21",
"sql.js": "^1.13.0",
"sqlite3": "^5.1.7",
"standard-changelog": "^7.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.2",
"typescript-eslint": "^8.44.0"
"typescript-eslint": "^8.45.0"
},
"peerDependencies": {
"@google-cloud/spanner": "^8.0.0",
@ -176,7 +176,7 @@
"better-sqlite3": "^12.0.0",
"ioredis": "^5.0.4",
"mongodb": "^6.0.0",
"mssql": "^11.0.1",
"mssql": "^12.0.0",
"mysql2": "^3.0.1",
"oracledb": "^6.3.0",
"pg": "^8.5.1",

View File

@ -1,38 +1,39 @@
#!/usr/bin/env node
import "reflect-metadata"
import yargs from "yargs"
import { SchemaSyncCommand } from "./commands/SchemaSyncCommand"
import { SchemaDropCommand } from "./commands/SchemaDropCommand"
import { QueryCommand } from "./commands/QueryCommand"
import { EntityCreateCommand } from "./commands/EntityCreateCommand"
import { MigrationCreateCommand } from "./commands/MigrationCreateCommand"
import { MigrationRunCommand } from "./commands/MigrationRunCommand"
import { MigrationRevertCommand } from "./commands/MigrationRevertCommand"
import { MigrationShowCommand } from "./commands/MigrationShowCommand"
import { SubscriberCreateCommand } from "./commands/SubscriberCreateCommand"
import { SchemaLogCommand } from "./commands/SchemaLogCommand"
import { MigrationGenerateCommand } from "./commands/MigrationGenerateCommand"
import { VersionCommand } from "./commands/VersionCommand"
import { InitCommand } from "./commands/InitCommand"
import { hideBin } from "yargs/helpers"
import { CacheClearCommand } from "./commands/CacheClearCommand"
import { EntityCreateCommand } from "./commands/EntityCreateCommand"
import { InitCommand } from "./commands/InitCommand"
import { MigrationCreateCommand } from "./commands/MigrationCreateCommand"
import { MigrationGenerateCommand } from "./commands/MigrationGenerateCommand"
import { MigrationRevertCommand } from "./commands/MigrationRevertCommand"
import { MigrationRunCommand } from "./commands/MigrationRunCommand"
import { MigrationShowCommand } from "./commands/MigrationShowCommand"
import { QueryCommand } from "./commands/QueryCommand"
import { SchemaDropCommand } from "./commands/SchemaDropCommand"
import { SchemaLogCommand } from "./commands/SchemaLogCommand"
import { SchemaSyncCommand } from "./commands/SchemaSyncCommand"
import { SubscriberCreateCommand } from "./commands/SubscriberCreateCommand"
import { VersionCommand } from "./commands/VersionCommand"
// eslint-disable-next-line @typescript-eslint/no-floating-promises
yargs
yargs(hideBin(process.argv))
.usage("Usage: $0 <command> [options]")
.command(new SchemaSyncCommand())
.command(new SchemaLogCommand())
.command(new SchemaDropCommand())
.command(new QueryCommand())
.command(new CacheClearCommand())
.command(new EntityCreateCommand())
.command(new SubscriberCreateCommand())
.command(new InitCommand())
.command(new MigrationCreateCommand())
.command(new MigrationGenerateCommand())
.command(new MigrationRevertCommand())
.command(new MigrationRunCommand())
.command(new MigrationShowCommand())
.command(new MigrationRevertCommand())
.command(new QueryCommand())
.command(new SchemaDropCommand())
.command(new SchemaLogCommand())
.command(new SchemaSyncCommand())
.command(new SubscriberCreateCommand())
.command(new VersionCommand())
.command(new CacheClearCommand())
.command(new InitCommand())
.recommendCommands()
.demandCommand(1)
.strict()