File tree Expand file tree Collapse file tree 4 files changed +8
-4
lines changed
Expand file tree Collapse file tree 4 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 1+ ## [ 6.7.5] - 2025-04-11
2+
3+ * Small refactor to metro.dart
4+
15## [ 6.7.4] - 2025-04-10
26
37* Fix commands not being run using ` runProcess `
Original file line number Diff line number Diff line change @@ -1090,7 +1090,7 @@ _makeModel(List<String> arguments) async {
10901090 String modelData = await MetroService .loadAsset ("nylo-model.json" );
10911091
10921092 // delete "nylo-model.json"
1093- Process .start ("rm" , [fileName],
1093+ await Process .start ("rm" , [fileName],
10941094 runInShell: true , mode: ProcessStartMode .normal);
10951095 MetroConsole .writeInBlack ("\n " );
10961096
@@ -1116,7 +1116,7 @@ _makeModel(List<String> arguments) async {
11161116 ? "${projectFile .creationPath !}/"
11171117 : "" );
11181118
1119- Process .start (
1119+ await Process .start (
11201120 "dart" ,
11211121 [
11221122 "format" ,
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.4 ' ;
32+ const String nyloVersion = 'v6.7.5 ' ;
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.4
3+ version : 6.7.5
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