@@ -190,24 +190,24 @@ class StartCommand extends Command<int> {
190190 }
191191 }
192192
193- void _writeResultToFiles ({
194- required Map <String , JsonContentMap > res,
195- required Directory outputDir,
196- }) {
197- final progress = logger.customProgress ('Writing results to files..' );
193+ // void _writeResultToFiles({
194+ // required Map<String, JsonContentMap> res,
195+ // required Directory outputDir,
196+ // }) {
197+ // final progress = logger.customProgress('Writing results to files..');
198198
199- res.forEach ((key, value) {
200- final file = File ('${outputDir .path }/$key .json' );
199+ // res.forEach((key, value) {
200+ // final file = File('${outputDir.path}/$key.json');
201201
202- if (! file.existsSync ()) {
203- file.createSync (recursive: true );
204- }
202+ // if (!file.existsSync()) {
203+ // file.createSync(recursive: true);
204+ // }
205205
206- progress.update ('Writing $key .json' );
206+ // progress.update('Writing $key.json');
207207
208- file.writeAsStringSync (value.toPrettyJson ());
209- });
210- }
208+ // file.writeAsStringSync(value.toPrettyJson());
209+ // });
210+ // }
211211
212212 Future <void > _writeNewLocalizationFiles ({
213213 required List <LangOutput > outputList,
0 commit comments