diff --git a/bun.lock b/bun.lock index 45fce11..c6862e1 100644 --- a/bun.lock +++ b/bun.lock @@ -5,17 +5,17 @@ "name": "@devscast/queryzen", "devDependencies": { "@biomejs/biome": "^2.3.7", - "@changesets/cli": "^2.29.5", + "@changesets/cli": "^2.29.7", "@commitlint/cli": "^19.8.1", "@commitlint/config-conventional": "^19.8.1", - "@types/node": "^24.0.13", - "@typescript-eslint/eslint-plugin": "^8.36.0", - "@typescript-eslint/parser": "^8.36.0", + "@types/node": "^24.10.1", + "@typescript-eslint/eslint-plugin": "^8.47.0", + "@typescript-eslint/parser": "^8.47.0", "commitizen": "^4.3.1", - "cz-conventional-changelog": "^3.0.1", + "cz-conventional-changelog": "^3.3.0", "husky": "^9.1.7", - "tsup": "^8.5.0", - "typescript": "^5.8.3", + "tsup": "^8.5.1", + "typescript": "^5.9.3", "vitest": "^3.2.4", }, }, diff --git a/src/index.ts b/src/index.ts index dcd05ea..2310e8b 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,5 +1,13 @@ export { ArrayParameterType } from "./array-parameter-type"; export { ParameterType } from "./parameter-type"; +export { + AbstractMySQLPlatform, + AbstractPlatform, + DB2Platform, + MySQLPlatform, + OraclePlatform, + SQLServerPlatform, +} from "./platforms"; export { ConflictResolutionMode } from "./query/for-update"; export { PlaceHolder, QueryBuilder } from "./query/query-builder"; export { UnionType } from "./query/union-type"; diff --git a/src/platforms/index.ts b/src/platforms/index.ts new file mode 100644 index 0000000..09bfdd8 --- /dev/null +++ b/src/platforms/index.ts @@ -0,0 +1,6 @@ +export { AbstractMySQLPlatform } from "./abstract-mysql-platform"; +export { AbstractPlatform } from "./abstract-platform"; +export { DB2Platform } from "./db2-platform"; +export { MySQLPlatform } from "./mysql-platform"; +export { OraclePlatform } from "./oracle-platform"; +export { SQLServerPlatform } from "./sql-server-platform";