update examples

This commit is contained in:
2026-01-15 14:44:16 -08:00
parent 7fea3df8ca
commit 9bf6ea37ea
10 changed files with 89 additions and 6 deletions
+5
View File
@@ -84,6 +84,11 @@ Future<List<_Package>> _scanDirectory(
continue;
}
// Skip example directories
if (entity.parent.path.split(Platform.pathSeparator).contains('example')) {
continue;
}
final pubspecContent = await entity.readAsString();
final name = _getValue(pubspecContent, 'name');
final description = _getValue(pubspecContent, 'description');