drizzle-kit 0.18.1-1be6e92 → 0.18.1-290fbec
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/index.cjs +5 -5
- package/package.json +1 -1
package/index.cjs
CHANGED
|
@@ -16702,7 +16702,7 @@ var init_mysqlImports = __esm({
|
|
|
16702
16702
|
const schemas = [];
|
|
16703
16703
|
for (let i = 0; i < imports.length; i++) {
|
|
16704
16704
|
const it = imports[i];
|
|
16705
|
-
const i0 = await import(
|
|
16705
|
+
const i0 = await import(it);
|
|
16706
16706
|
const i0values = Object.values(i0);
|
|
16707
16707
|
i0values.forEach((t) => {
|
|
16708
16708
|
if (t instanceof import_mysql_core.MySqlTable) {
|
|
@@ -17112,7 +17112,7 @@ var init_pgImports = __esm({
|
|
|
17112
17112
|
const schemas = [];
|
|
17113
17113
|
for (let i = 0; i < imports.length; i++) {
|
|
17114
17114
|
const it = imports[i];
|
|
17115
|
-
const i0 = await import(
|
|
17115
|
+
const i0 = await import(it);
|
|
17116
17116
|
const i0values = Object.values(i0);
|
|
17117
17117
|
i0values.forEach((t) => {
|
|
17118
17118
|
if ((0, import_pg_core.isPgEnum)(t)) {
|
|
@@ -17637,7 +17637,7 @@ var init_sqliteImports = __esm({
|
|
|
17637
17637
|
const enums = [];
|
|
17638
17638
|
for (let i = 0; i < imports.length; i++) {
|
|
17639
17639
|
const it = imports[i];
|
|
17640
|
-
const i0 = await import(
|
|
17640
|
+
const i0 = await import(it);
|
|
17641
17641
|
const i0values = Object.values(i0);
|
|
17642
17642
|
i0values.forEach((t) => {
|
|
17643
17643
|
if (t instanceof import_sqlite_core.SQLiteTable) {
|
|
@@ -46726,7 +46726,7 @@ var drizzleConfigFromFile = async (configPath) => {
|
|
|
46726
46726
|
process.exit(1);
|
|
46727
46727
|
}
|
|
46728
46728
|
console.log(source_default.grey(`Reading config file '${path3}'`));
|
|
46729
|
-
const required = await import(
|
|
46729
|
+
const required = await import(path3);
|
|
46730
46730
|
const content = required.default ?? required;
|
|
46731
46731
|
console.log(required);
|
|
46732
46732
|
console.log(required.default);
|
|
@@ -46758,7 +46758,7 @@ var readDrizzleConfig = async (configPath) => {
|
|
|
46758
46758
|
process.exit(1);
|
|
46759
46759
|
}
|
|
46760
46760
|
console.log(source_default.grey(`Reading config file '${path3}'`));
|
|
46761
|
-
const required = await import(
|
|
46761
|
+
const required = await import(path3);
|
|
46762
46762
|
const content = required.default ?? required;
|
|
46763
46763
|
return content;
|
|
46764
46764
|
};
|