File tree Expand file tree Collapse file tree 3 files changed +17
-3
lines changed
Expand file tree Collapse file tree 3 files changed +17
-3
lines changed Original file line number Diff line number Diff line change 1+ ## 1.4.0
2+ * Have added ` gen ` command to generate directory and common files for a modified tdd structure
3+ * Fixed adding multiple instance of plugins if already exists
4+ * Made all functions private
5+
16## 1.3.3
27* Google services version upgraded
38
Original file line number Diff line number Diff line change @@ -37,8 +37,12 @@ void decipherScript(List<String> arguments) async {
3737 abbr: "p" ,
3838 help: "Base path, defaults to ${_Commons .basePath }" ,
3939 defaultsTo: _Commons .basePath);
40- genParser.addFlag ("core" ,
41- abbr: "c" , help: "Generates core directory instead of feature directory" );
40+ genParser.addFlag (
41+ "core" ,
42+ abbr: "c" ,
43+ help: "Generates core directory instead of feature directory" ,
44+ negatable: false ,
45+ );
4246
4347 var argResults = parser.parse (arguments);
4448 if (argResults.command? .name == "gen" ) {
@@ -55,6 +59,11 @@ void decipherScript(List<String> arguments) async {
5559 if (argResults['help' ] || argResults.arguments.length < 1 ) {
5660 stdout.write ('Automation scripts for flutter' );
5761 stdout.write (parser.usage);
62+ stdout.writeln ("\n " );
63+ stdout.writeln (
64+ "[Command: gen] - flutter pub run flutter_automation gen <options>" );
65+ stdout.writeln ("Options:" );
66+ stdout.writeln (genParser.usage);
5867 return ;
5968 }
6069
Original file line number Diff line number Diff line change 11name : flutter_automation
22description : A flutter package that provides various automation scripts to help
33 you with your flutter project.
4- version : 1.3.3
4+ version : 1.4.0
55author : Damodar Lohani<dlohani48@gmail.com>
66homepage : https://github.com/lohanidamodar/flutter_automation
77
You can’t perform that action at this time.
0 commit comments