@neetru/sdk 2.3.5 → 2.3.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/db.cjs CHANGED
@@ -449,7 +449,10 @@ function parseLease(raw) {
449
449
  };
450
450
  }
451
451
  async function createPgPool(lease) {
452
- const { Pool } = await import('pg');
452
+ const { Pool } = await import(
453
+ /* webpackIgnore: true */
454
+ 'pg'
455
+ );
453
456
  const ssl = lease.sslca ? {
454
457
  ca: lease.sslca,
455
458
  cert: lease.clientCert ?? void 0,
@@ -469,7 +472,10 @@ async function createPgPool(lease) {
469
472
  });
470
473
  }
471
474
  async function createDrizzleHandle(pool, schema) {
472
- const { drizzle } = await import('drizzle-orm/node-postgres');
475
+ const { drizzle } = await import(
476
+ /* webpackIgnore: true */
477
+ 'drizzle-orm/node-postgres'
478
+ );
473
479
  return drizzle(pool, { schema });
474
480
  }
475
481
  async function createSqlClientWithDeps(deps, options) {