drizzle-kit 0.20.4-d303ac3 → 0.20.4-dea9219

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.
Files changed (3) hide show
  1. package/bin.cjs +3 -3
  2. package/package.json +2 -2
  3. package/utils.js +1 -1
package/bin.cjs CHANGED
@@ -19040,7 +19040,7 @@ var init_introspect_pg = __esm({
19040
19040
  const file = importsTs + decalrations;
19041
19041
  const schemaEntry = `
19042
19042
  {
19043
- ${Object.values(schema4.tables).map((it) => withCasing(it.name)).join(",")}
19043
+ ${Object.values(schema4.tables).map((it) => withCasing(it.name, casing)).join(",\n")}
19044
19044
  }
19045
19045
  `;
19046
19046
  return { file, imports: importsTs, decalrations, schemaEntry };
@@ -25861,7 +25861,7 @@ var init_introspect_sqlite = __esm({
25861
25861
  const file = importsTs + decalrations;
25862
25862
  const schemaEntry = `
25863
25863
  {
25864
- ${Object.values(schema4.tables).map((it) => withCasing2(it.name)).join(",")}
25864
+ ${Object.values(schema4.tables).map((it) => withCasing2(it.name, casing)).join(",")}
25865
25865
  }
25866
25866
  `;
25867
25867
  return { file, imports: importsTs, decalrations, schemaEntry };
@@ -60243,7 +60243,7 @@ var package_default = {
60243
60243
  ]
60244
60244
  },
60245
60245
  dependencies: {
60246
- "@drizzle-team/studio": "^0.0.30",
60246
+ "@drizzle-team/studio": "^0.0.31",
60247
60247
  "@esbuild-kit/esm-loader": "^2.5.5",
60248
60248
  camelcase: "^7.0.1",
60249
60249
  chalk: "^5.2.0",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "drizzle-kit",
3
- "version": "0.20.4-d303ac3",
3
+ "version": "0.20.4-dea9219",
4
4
  "repository": "https://github.com/drizzle-team/drizzle-kit-mirror",
5
5
  "author": "Drizzle Team",
6
6
  "license": "MIT",
@@ -56,7 +56,7 @@
56
56
  ]
57
57
  },
58
58
  "dependencies": {
59
- "@drizzle-team/studio": "^0.0.30",
59
+ "@drizzle-team/studio": "^0.0.31",
60
60
  "@esbuild-kit/esm-loader": "^2.5.5",
61
61
  "camelcase": "^7.0.1",
62
62
  "chalk": "^5.2.0",
package/utils.js CHANGED
@@ -18014,7 +18014,7 @@ var init_introspect_pg = __esm({
18014
18014
  const file = importsTs + decalrations;
18015
18015
  const schemaEntry = `
18016
18016
  {
18017
- ${Object.values(schema4.tables).map((it) => withCasing(it.name)).join(",")}
18017
+ ${Object.values(schema4.tables).map((it) => withCasing(it.name, casing)).join(",\n")}
18018
18018
  }
18019
18019
  `;
18020
18020
  return { file, imports: importsTs, decalrations, schemaEntry };