relq 1.0.21 → 1.0.22

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.
@@ -58,9 +58,11 @@ async function loadConfig(startPath) {
58
58
  });
59
59
  const module = (await jiti.import(result.configPath));
60
60
  if (module && module?.default) {
61
+ console.log(module);
61
62
  return module.default;
62
63
  }
63
64
  if (module && typeof module === 'object' && Object.keys(module).length > 0) {
65
+ console.log(module);
64
66
  return module;
65
67
  }
66
68
  return {};
@@ -51,9 +51,11 @@ export async function loadConfig(startPath) {
51
51
  });
52
52
  const module = (await jiti.import(result.configPath));
53
53
  if (module && module?.default) {
54
+ console.log(module);
54
55
  return module.default;
55
56
  }
56
57
  if (module && typeof module === 'object' && Object.keys(module).length > 0) {
58
+ console.log(module);
57
59
  return module;
58
60
  }
59
61
  return {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "relq",
3
- "version": "1.0.21",
3
+ "version": "1.0.22",
4
4
  "description": "The Fully-Typed PostgreSQL ORM for TypeScript",
5
5
  "author": "Olajide Mathew O. <olajide.mathew@yuniq.solutions>",
6
6
  "license": "MIT",