File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ ## 0.0.30
2+
3+ - Occasionally suggest using ` --fix ` flag when it's not passed.
4+
15## 0.0.29
26
37- Add support for download_url.
Original file line number Diff line number Diff line change 11import 'dart:io' ;
2+ import 'dart:math' ;
23
34import 'package:args/args.dart' ;
45import 'package:flutterflow_cli/src/flutterflow_api_client.dart' ;
@@ -60,6 +61,14 @@ Future<void> appMain(List<String> args) async {
6061 exportAsDebug: parsedArguments.command! ['as-debug' ],
6162 environmentName: parsedArguments.command! ['project-environment' ],
6263 );
64+ if (! parsedArguments.command! ['fix' ] && Random ().nextDouble () < 0.2 ) {
65+ print (
66+ '\n Tip: Add --fix to automatically apply dart fix, which applies '
67+ 'recommended lint fixes for cleaner, more idiomatic, and '
68+ 'potentially more performant Dart code. Note: this makes '
69+ 'the export slower.' ,
70+ );
71+ }
6372 break ;
6473 case 'deploy-firebase' :
6574 await firebaseDeploy (
Original file line number Diff line number Diff line change 11name : flutterflow_cli
22description : >-
33 Command-line client for FlutterFlow. Export code from FlutterFlow projects.
4- version : 0.0.29
4+ version : 0.0.30
55homepage : https://github.com/FlutterFlow/flutterflow-cli
66issue_tracker : https://github.com/flutterflow/flutterflow-issues
77
You can’t perform that action at this time.
0 commit comments