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 11import 'dart:collection' ;
22import 'dart:convert' ;
33import 'dart:io' as io;
4- import 'dart:io' ;
54
65import 'package:dart_frog_cli/src/command.dart' ;
76import 'package:dart_frog_cli/src/commands/commands.dart' ;
@@ -54,7 +53,7 @@ class DevCommand extends DartFrogCommand {
5453 /// {@macro dev_command}
5554 DevCommand ({
5655 super .logger,
57- void Function (Directory )? ensureRuntimeCompatibility,
56+ void Function (io. Directory )? ensureRuntimeCompatibility,
5857 DirectoryWatcherBuilder ? directoryWatcher,
5958 GeneratorBuilder ? generator,
6059 RestorableDirectoryGeneratorTargetBuilder ? generatorTarget,
@@ -81,7 +80,7 @@ class DevCommand extends DartFrogCommand {
8180 );
8281 }
8382
84- final void Function (Directory ) _ensureRuntimeCompatibility;
83+ final void Function (io. Directory ) _ensureRuntimeCompatibility;
8584 final DirectoryWatcherBuilder _directoryWatcher;
8685 final GeneratorBuilder _generator;
8786 final Exit _exit;
You can’t perform that action at this time.
0 commit comments