relq 1.0.22 → 1.0.23
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/dist/cjs/cli/index.cjs +1 -1
- package/dist/esm/cli/index.js +1 -1
- package/package.json +1 -1
package/dist/cjs/cli/index.cjs
CHANGED
|
@@ -260,7 +260,7 @@ async function main() {
|
|
|
260
260
|
console.error('');
|
|
261
261
|
process.exit(1);
|
|
262
262
|
}
|
|
263
|
-
config = await loadConfigWithEnv(
|
|
263
|
+
config = await loadConfigWithEnv(foundConfig);
|
|
264
264
|
if (requiresDbConnection(command, flags) && !config.connection?.host && !config.connection?.url) {
|
|
265
265
|
const colors = {
|
|
266
266
|
red: (s) => `\x1b[31m${s}\x1b[0m`,
|
package/dist/esm/cli/index.js
CHANGED
|
@@ -224,7 +224,7 @@ async function main() {
|
|
|
224
224
|
console.error('');
|
|
225
225
|
process.exit(1);
|
|
226
226
|
}
|
|
227
|
-
config = await loadConfigWithEnv(
|
|
227
|
+
config = await loadConfigWithEnv(foundConfig);
|
|
228
228
|
if (requiresDbConnection(command, flags) && !config.connection?.host && !config.connection?.url) {
|
|
229
229
|
const colors = {
|
|
230
230
|
red: (s) => `\x1b[31m${s}\x1b[0m`,
|