drizzle-kit 0.24.2-c5d1196 → 0.24.2-daeed1e
Sign up to get free protection for your applications and to get access to all the features.
- package/bin.cjs +2 -5
- package/package.json +1 -1
package/bin.cjs
CHANGED
@@ -64269,7 +64269,7 @@ var init_connections = __esm({
|
|
64269
64269
|
const { drizzle } = await import("drizzle-orm/libsql");
|
64270
64270
|
const { migrate: migrate2 } = await import("drizzle-orm/libsql/migrator");
|
64271
64271
|
const client = createClient({
|
64272
|
-
url: credentials2.url
|
64272
|
+
url: normaliseSQLiteUrl(credentials2.url, "libsql")
|
64273
64273
|
});
|
64274
64274
|
const drzl = drizzle(client);
|
64275
64275
|
const migrateFn = async (config) => {
|
@@ -64282,9 +64282,6 @@ var init_connections = __esm({
|
|
64282
64282
|
},
|
64283
64283
|
run: async (query) => {
|
64284
64284
|
await client.execute(query);
|
64285
|
-
},
|
64286
|
-
batchWithPragma: async (queries) => {
|
64287
|
-
await client.migrate(queries);
|
64288
64285
|
}
|
64289
64286
|
};
|
64290
64287
|
const proxy = {
|
@@ -87345,7 +87342,7 @@ init_utils2();
|
|
87345
87342
|
var version2 = async () => {
|
87346
87343
|
const { npmVersion } = await ormCoreVersions();
|
87347
87344
|
const ormVersion = npmVersion ? `drizzle-orm: v${npmVersion}` : "";
|
87348
|
-
const envVersion = "0.24.2-
|
87345
|
+
const envVersion = "0.24.2-daeed1e";
|
87349
87346
|
const kitVersion = envVersion ? `v${envVersion}` : "--";
|
87350
87347
|
const versions = `drizzle-kit: ${kitVersion}
|
87351
87348
|
${ormVersion}`;
|