File tree Expand file tree Collapse file tree 4 files changed +10
-6
lines changed
Expand file tree Collapse file tree 4 files changed +10
-6
lines changed Original file line number Diff line number Diff line change 1+ ## [ 6.7.6] - 2025-04-11
2+
3+ * Fix methods: ` addPackage ` and ` addPackages `
4+
15## [ 6.7.5] - 2025-04-11
26
37* Small refactor to metro.dart
Original file line number Diff line number Diff line change @@ -101,13 +101,13 @@ abstract class NyCustomCommand {
101101 }
102102
103103 /// Add a package to the pubspec.yaml file
104- addPackage (String package, {String ? version, bool dev = false }) {
105- MetroService .addPackage (package, dev: dev, version: version);
104+ addPackage (String package, {String ? version, bool dev = false }) async {
105+ await MetroService .addPackage (package, dev: dev, version: version);
106106 }
107107
108108 /// Add multiple packages to the pubspec.yaml file
109- addPackages (List <String > packages, {bool dev = false }) {
110- MetroService .addPackages (packages, dev: dev);
109+ addPackages (List <String > packages, {bool dev = false }) async {
110+ await MetroService .addPackages (packages, dev: dev);
111111 }
112112
113113 /// Prints a message in blue color
Original file line number Diff line number Diff line change @@ -29,4 +29,4 @@ export 'package:date_field/date_field.dart';
2929export 'package:dio/dio.dart' ;
3030
3131/// Nylo version
32- const String nyloVersion = 'v6.7.5 ' ;
32+ const String nyloVersion = 'v6.7.6 ' ;
Original file line number Diff line number Diff line change 11name : nylo_framework
22description : Micro-framework for Flutter that's built to simplify app development for Flutter projects.
3- version : 6.7.5
3+ version : 6.7.6
44homepage : https://nylo.dev
55repository : https://github.com/nylo-core/framework/tree/6.x
66issue_tracker : https://github.com/nylo-core/framework/issues
You can’t perform that action at this time.
0 commit comments