File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 3
3
// BSD-style license that can be found in the LICENSE file.
4
4
5
5
import 'dart:async' ;
6
- import 'build_runner_command_base .dart' ;
6
+ import 'command_base .dart' ;
7
7
8
8
/// Command to execute pub run build_runner build.
9
- class BuildCommand extends BuildRunnerCommandBase {
9
+ class BuildCommand extends CommandBase {
10
10
BuildCommand () : super (releaseDefault: true );
11
11
12
12
@override
Original file line number Diff line number Diff line change @@ -19,10 +19,10 @@ const _verbose = 'verbose';
19
19
20
20
/// Extend to get a command with the arguments common to all build_runner
21
21
/// commands.
22
- abstract class BuildRunnerCommandBase extends Command <int > {
22
+ abstract class CommandBase extends Command <int > {
23
23
final bool releaseDefault;
24
24
25
- BuildRunnerCommandBase ({@required this .releaseDefault}) {
25
+ CommandBase ({@required this .releaseDefault}) {
26
26
// TODO(nshahan) Expose more common args passed to build_runner commands.
27
27
// build_runner might expose args for use in wrapping scripts like this one.
28
28
argParser
Original file line number Diff line number Diff line change 4
4
5
5
import 'dart:async' ;
6
6
7
- import 'build_runner_command_base .dart' ;
7
+ import 'command_base .dart' ;
8
8
9
9
/// Command to execute pub run build_runner serve.
10
- class ServeCommand extends BuildRunnerCommandBase {
10
+ class ServeCommand extends CommandBase {
11
11
@override
12
12
final name = 'serve' ;
13
13
You can’t perform that action at this time.
0 commit comments