File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
packages/dart_frog_cli/lib/src/commands/dev Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change 1
1
import 'dart:collection' ;
2
2
import 'dart:convert' ;
3
3
import 'dart:io' as io;
4
- import 'dart:io' ;
5
4
6
5
import 'package:dart_frog_cli/src/command.dart' ;
7
6
import 'package:dart_frog_cli/src/commands/commands.dart' ;
@@ -54,7 +53,7 @@ class DevCommand extends DartFrogCommand {
54
53
/// {@macro dev_command}
55
54
DevCommand ({
56
55
super .logger,
57
- void Function (Directory )? ensureRuntimeCompatibility,
56
+ void Function (io. Directory )? ensureRuntimeCompatibility,
58
57
DirectoryWatcherBuilder ? directoryWatcher,
59
58
GeneratorBuilder ? generator,
60
59
RestorableDirectoryGeneratorTargetBuilder ? generatorTarget,
@@ -81,7 +80,7 @@ class DevCommand extends DartFrogCommand {
81
80
);
82
81
}
83
82
84
- final void Function (Directory ) _ensureRuntimeCompatibility;
83
+ final void Function (io. Directory ) _ensureRuntimeCompatibility;
85
84
final DirectoryWatcherBuilder _directoryWatcher;
86
85
final GeneratorBuilder _generator;
87
86
final Exit _exit;
You can’t perform that action at this time.
0 commit comments