compileAll function
Sweep the global registry and compile every declared string.
Implementation
Future<CompileResult> compileAll({
required List<String> locales,
Object? drafter,
String sourceLocale = 'en',
bool force = false,
String? existingDir,
void Function(String)? log,
}) {
return compileStrings(
strings: getRegistry().values.toList(),
locales: locales,
drafter: drafter,
sourceLocale: sourceLocale,
force: force,
existingDir: existingDir,
log: log,
);
}