File tree Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -122,6 +122,10 @@ Future<void> analyzeTestPackages() async {
122
122
}
123
123
}
124
124
125
+ Future <void > _runFormatter () async {
126
+ await SubprocessLauncher ('formatter' ).runStreamedDartCommand (['format' , '.' ]);
127
+ }
128
+
125
129
Future <void > _buildHelp () async {
126
130
print ('''
127
131
Usage:
@@ -156,8 +160,11 @@ Future<void> buildAll() async {
156
160
await buildDartdocOptions ();
157
161
}
158
162
159
- Future <void > buildRenderers () async => await SubprocessLauncher ('build' )
160
- .runStreamedDartCommand ([path.join ('tool' , 'mustachio' , 'builder.dart' )]);
163
+ Future <void > buildRenderers () async {
164
+ await SubprocessLauncher ('build' )
165
+ .runStreamedDartCommand ([path.join ('tool' , 'mustachio' , 'builder.dart' )]);
166
+ await _runFormatter ();
167
+ }
161
168
162
169
Future <void > buildDartdocOptions () async {
163
170
var version = _getPackageVersion ();
You can’t perform that action at this time.
0 commit comments