drizzle-kit 0.20.1 → 0.20.2-fbfd197
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/bin.cjs +4 -4
- package/package.json +1 -1
- package/utils.js +3 -3
package/bin.cjs
CHANGED
@@ -12073,9 +12073,9 @@ var init_pgImports = __esm({
|
|
12073
12073
|
const it = imports[i];
|
12074
12074
|
const i0 = require(`${it}`);
|
12075
12075
|
const prepared = prepareFromExports(i0);
|
12076
|
-
tables
|
12077
|
-
enums
|
12078
|
-
schemas
|
12076
|
+
tables.push(...prepared.tables);
|
12077
|
+
enums.push(...prepared.enums);
|
12078
|
+
schemas.push(...prepared.schemas);
|
12079
12079
|
}
|
12080
12080
|
unregister();
|
12081
12081
|
return { tables, enums, schemas };
|
@@ -60141,7 +60141,7 @@ init_source();
|
|
60141
60141
|
// package.json
|
60142
60142
|
var package_default = {
|
60143
60143
|
name: "drizzle-kit",
|
60144
|
-
version: "0.20.
|
60144
|
+
version: "0.20.2",
|
60145
60145
|
repository: "https://github.com/drizzle-team/drizzle-kit-mirror",
|
60146
60146
|
author: "Drizzle Team",
|
60147
60147
|
license: "MIT",
|
package/package.json
CHANGED
package/utils.js
CHANGED
@@ -11796,9 +11796,9 @@ var init_pgImports = __esm({
|
|
11796
11796
|
const it = imports[i];
|
11797
11797
|
const i0 = require(`${it}`);
|
11798
11798
|
const prepared = prepareFromExports(i0);
|
11799
|
-
tables
|
11800
|
-
enums
|
11801
|
-
schemas
|
11799
|
+
tables.push(...prepared.tables);
|
11800
|
+
enums.push(...prepared.enums);
|
11801
|
+
schemas.push(...prepared.schemas);
|
11802
11802
|
}
|
11803
11803
|
unregister();
|
11804
11804
|
return { tables, enums, schemas };
|