Skip to content

Commit b41afc5

Browse files
committed
import ordering cleanup
1 parent 4df34c8 commit b41afc5

File tree

5 files changed

+6
-7
lines changed

5 files changed

+6
-7
lines changed

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: build
2-
version: 0.2.1
2+
version: 0.2.2-dev
33
description: A build system for Dart.
44
author: Dart Team <[email protected]>
55
homepage: https://github.com/dart-lang/build

test/analyzer/resolver_test.dart

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,13 @@
44
@TestOn('vm')
55
import 'dart:async';
66

7+
import 'package:logging/logging.dart';
78
import 'package:test/test.dart';
89

910
import 'package:build/build.dart';
1011
import 'package:build/src/builder/build_step_impl.dart';
1112
import 'package:build/src/util/barback.dart';
1213

13-
import 'package:logging/logging.dart';
14-
1514
import '../common/common.dart';
1615

1716
// Ported from

test/builder/build_step_impl_test.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
// for details. All rights reserved. Use of this source code is governed by a
33
// BSD-style license that can be found in the LICENSE file.
44
@TestOn('vm')
5+
import 'package:logging/logging.dart';
56
import 'package:test/test.dart';
67

78
import 'package:build/build.dart';
89
import 'package:build/src/builder/build_step_impl.dart';
9-
import 'package:logging/logging.dart';
1010

1111
import '../common/common.dart';
1212

test/common/common.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
// BSD-style license that can be found in the LICENSE file.
44
import 'dart:async';
55

6+
import 'package:logging/logging.dart';
67
import 'package:test/test.dart';
78

89
import 'package:build/build.dart';
9-
import 'package:logging/logging.dart';
1010

1111
import 'assets.dart';
1212
import 'in_memory_reader.dart';

test/generate/serve_test.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ import 'dart:async';
55

66
import 'package:logging/logging.dart';
77
import 'package:path/path.dart' as path;
8+
import 'package:shelf/shelf.dart';
89
import 'package:test/test.dart';
10+
import 'package:watcher/watcher.dart';
911

1012
import 'package:build/build.dart';
1113
import 'package:build/src/server/server.dart' as server;
12-
import 'package:shelf/shelf.dart';
13-
import 'package:watcher/watcher.dart';
1414

1515
import '../common/common.dart';
1616

0 commit comments

Comments
 (0)