Skip to content

Commit a7506bc

Browse files
Os-humble-manbernard-ng
authored andcommitted
feat: expose and reorder platform exports
1 parent ea3fd01 commit a7506bc

3 files changed

Lines changed: 19 additions & 12 deletions

File tree

bun.lock

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/index.ts

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
export { ArrayParameterType } from "./array-parameter-type";
22
export { ParameterType } from "./parameter-type";
3+
export {
4+
AbstractMySQLPlatform,
5+
AbstractPlatform,
6+
DB2Platform,
7+
MySQLPlatform,
8+
OraclePlatform,
9+
SQLServerPlatform,
10+
} from "./platforms";
311
export { ConflictResolutionMode } from "./query/for-update";
412
export { PlaceHolder, QueryBuilder } from "./query/query-builder";
513
export { UnionType } from "./query/union-type";
6-
export * from "./platforms";

src/platforms/index.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
export { SQLServerPlatform } from "./sql-server-platform";
1+
export { AbstractMySQLPlatform } from "./abstract-mysql-platform";
2+
export { AbstractPlatform } from "./abstract-platform";
3+
export { DB2Platform } from "./db2-platform";
24
export { MySQLPlatform } from "./mysql-platform";
35
export { OraclePlatform } from "./oracle-platform";
4-
export { DB2Platform } from "./db2-platform";
5-
export { AbstractPlatform } from "./abstract-platform";
6-
export { AbstractMySQLPlatform } from "./abstract-mysql-platform";
6+
export { SQLServerPlatform } from "./sql-server-platform";

0 commit comments

Comments
 (0)