feat: upgrade build brick generator deps

This commit is contained in:
Hugo Pointcheval 2023-11-14 18:57:28 +01:00
parent 597e72ac60
commit 1f3807adb5
Signed by: hugo
GPG Key ID: 3AAC487E131E00BC
3 changed files with 3 additions and 3 deletions

View File

@ -24,7 +24,7 @@ class Logger {
static void setVerbose() => verbose = true;
static void log(Object? message, {LogLevel level = LogLevel.info}) {
stdout.writeln('${level.prefix} ${message.toString()}');
stdout.writeln('${level.prefix} $message');
}
static void debug(Object? message) {

View File

@ -57,7 +57,7 @@ abstract class _Cmd {
if (pr.exitCode != 0) {
final values = {
'Standard out': pr.stdout.toString().trim(),
'Standard error': pr.stderr.toString().trim()
'Standard error': pr.stderr.toString().trim(),
}..removeWhere((k, v) => v.isEmpty);
String message;

View File

@ -18,4 +18,4 @@ dev_dependencies:
hosted:
url: https://git.wyatt-studio.fr/api/packages/Wyatt-FOSS/pub/
name: wyatt_analysis
version: 2.3.0
version: 2.6.1