drizzle-kit 0.18.1-c862e6a → 0.18.1-f3800bf
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 +3 -1
- package/package.json +1 -1
package/index.cjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
#!/usr/bin/env -S node --loader drizzle-kit/loader
|
|
1
|
+
#!/usr/bin/env -S node --loader drizzle-kit/loader --no-warnings
|
|
2
2
|
var __create = Object.create;
|
|
3
3
|
var __defProp = Object.defineProperty;
|
|
4
4
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
@@ -46728,6 +46728,8 @@ var drizzleConfigFromFile = async (configPath) => {
|
|
|
46728
46728
|
console.log(source_default.grey(`Reading config file '${path3}'`));
|
|
46729
46729
|
const required = await import(`drizzle://${path3}`);
|
|
46730
46730
|
const content = required.default ?? required;
|
|
46731
|
+
console.log(required);
|
|
46732
|
+
console.log(required.default);
|
|
46731
46733
|
const res = mySqlCliConfigSchema.safeParse(content);
|
|
46732
46734
|
if (!res.success) {
|
|
46733
46735
|
console.error(res.error);
|