| Index: utils/pub/validator.dart
|
| diff --git a/utils/pub/validator.dart b/utils/pub/validator.dart
|
| index d5ab53c6c1874a84d7112455b489d11ade340ef0..584a21416f3d054554c614d593bf77184e529703 100644
|
| --- a/utils/pub/validator.dart
|
| +++ b/utils/pub/validator.dart
|
| @@ -8,6 +8,7 @@ import 'entrypoint.dart';
|
| import 'io.dart';
|
| import 'system_cache.dart';
|
| import 'utils.dart';
|
| +import 'validator/name.dart';
|
| import 'validator/pubspec_field.dart';
|
|
|
| /// The base class for validators that check whether a package is fit for
|
| @@ -37,6 +38,7 @@ abstract class Validator {
|
| static Future<Pair<List<String>, List<String>>> runAll(
|
| Entrypoint entrypoint) {
|
| var validators = [
|
| + new NameValidator(entrypoint),
|
| new PubspecFieldValidator(entrypoint)
|
| ];
|
|
|
|
|