Skip to content

Commit

Permalink
fix: include all drivers in driverfactory error message (#8061)
Browse files Browse the repository at this point in the history
  • Loading branch information
imnotjames committed Aug 11, 2021
1 parent 80cdf8f commit fbd1ef7
Showing 1 changed file with 18 additions and 2 deletions.
20 changes: 18 additions & 2 deletions src/driver/DriverFactory.ts
Expand Up @@ -70,8 +70,24 @@ export class DriverFactory {
throw new MissingDriverError(
type,
[
"cordova", "expo", "mariadb", "mongodb", "mssql", "mysql", "oracle", "postgres",
"sqlite", "better-sqlite3", "sqljs", "react-native", "aurora-data-api", "aurora-data-api-pg"
"aurora-data-api",
"aurora-data-api-pg",
"better-sqlite3",
"capacitor",
"cockroachdb",
"cordova",
"expo",
"mariadb",
"mongodb",
"mssql",
"mysql",
"nativescript",
"oracle",
"postgres",
"react-native",
"sap",
"sqlite",
"sqljs",
]
);
}
Expand Down

0 comments on commit fbd1ef7

Please sign in to comment.