feat: set peerDependencies

This commit is contained in:
2025-07-07 13:04:31 +02:00
parent 4a97f4d4c6
commit 3c244998f7
14 changed files with 145 additions and 93 deletions

View File

@@ -168,9 +168,9 @@ export class PostgresTestContainer {
* @param options - Connection options to append to the URL.
*/
url(name: string, options?: PostgresConnectionOptions): PostgresConnectionUrl {
return `postgres://${this.username}:${this.password}@${this.host}:${this.port}/${name}${
postgresOptionsToString(options)
}`;
return `postgres://${this.username}:${this.password}@${this.host}:${this.port}/${name}${postgresOptionsToString(
options,
)}`;
}
}