@kradle/cli 0.0.12 → 0.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.
|
@@ -229,13 +229,13 @@ export class Evaluator {
|
|
|
229
229
|
this.tui.stop();
|
|
230
230
|
console.log("");
|
|
231
231
|
}
|
|
232
|
+
if (options.openMetabase ?? true) {
|
|
233
|
+
openInBrowser(`https://daunt-fair.metabaseapp.com/dashboard/10-runs-analysis?tags=${iterationTag}`);
|
|
234
|
+
}
|
|
232
235
|
const errors = this.runner?.getAllStates().filter((state) => state.status === "error");
|
|
233
236
|
if (errors?.length > 0) {
|
|
234
237
|
throw new Error(`${errors.map((error) => error.error).join("\n\n")}`);
|
|
235
238
|
}
|
|
236
|
-
if (options.openMetabase ?? true) {
|
|
237
|
-
openInBrowser(`https://daunt-fair.metabaseapp.com/dashboard/10-runs-analysis?tags=${iterationTag}`);
|
|
238
|
-
}
|
|
239
239
|
}
|
|
240
240
|
/**
|
|
241
241
|
* Handle state change from runner
|
package/oclif.manifest.json
CHANGED