update readme

This commit is contained in:
2026-01-14 00:37:34 -08:00
parent fd9f3509d4
commit 7ace24ee9b
2 changed files with 13 additions and 13 deletions
+3 -3
View File
@@ -47,12 +47,12 @@ void main() async {
sb.writeln();
sb.writeln('## Packages');
sb.writeln();
sb.writeln('| Package | Description | Version | Pub |');
sb.writeln('| :--- | :--- | :--- | :--- |');
sb.writeln('| Package | Description | Version |');
sb.writeln('| :--- | :--- | :--- |');
for (final pkg in packages) {
sb.writeln(
'| [${pkg.name}](${pkg.path}) | ${pkg.description} | [![Pub](https://img.shields.io/pub/v/${pkg.name}.svg?style=popout)] | [![pub package](https://img.shields.io/pub/v/${pkg.name}.svg)](https://pub.dev/packages/${pkg.name}) |');
'| [${pkg.name}](${pkg.path}) | ${pkg.description} | [![Pub](https://img.shields.io/pub/v/${pkg.name}.svg?style=popout)](https://pub.dartlang.org/packages/${pkg.name}) |');
}
await readmeFile.writeAsString(sb.toString());