relq 1.0.12 → 1.0.13
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.
|
@@ -121,6 +121,7 @@ function getSchemaPath(config) {
|
|
|
121
121
|
if (!config) {
|
|
122
122
|
return (0, cli_utils_1.fatal)('Configuration is required', 'Schema path must be defined in relq.config.ts');
|
|
123
123
|
}
|
|
124
|
+
console.log(config);
|
|
124
125
|
if (typeof config.schema === 'string' && config.schema.length > 0) {
|
|
125
126
|
return config.schema;
|
|
126
127
|
}
|
|
@@ -78,6 +78,7 @@ export function getSchemaPath(config) {
|
|
|
78
78
|
if (!config) {
|
|
79
79
|
return fatal('Configuration is required', 'Schema path must be defined in relq.config.ts');
|
|
80
80
|
}
|
|
81
|
+
console.log(config);
|
|
81
82
|
if (typeof config.schema === 'string' && config.schema.length > 0) {
|
|
82
83
|
return config.schema;
|
|
83
84
|
}
|