OLD | NEW |
---|---|
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 library pub.validator.executable; | 5 library pub.validator.executable; |
6 | 6 |
7 import 'dart:async'; | 7 import 'dart:async'; |
8 | 8 |
9 import 'package:path/path.dart' as p; | 9 import 'package:path/path.dart' as p; |
10 | 10 |
11 import '../entrypoint.dart'; | 11 import '../entrypoint.dart'; |
12 import '../validator.dart'; | 12 import '../validator.dart'; |
13 | 13 |
14 /// Validates that a package's pubspec doesn't contain executables that | 14 /// Validates that a package's pubspec doesn't contain executables that |
15 /// reference non-existent scripts. | 15 /// reference non-existent scripts. |
16 class ExecutableValidator extends Validator { | 16 class ExecutableValidator extends Validator { |
17 ExecutableValidator(Entrypoint entrypoint) | 17 ExecutableValidator(Entrypoint entrypoint) |
18 : super(entrypoint); | 18 : super(entrypoint); |
19 | 19 |
20 Future validate() async { | 20 Future validate() async { |
21 // TODO(rnystrom): This can print false positives since a script may be | 21 // TODO(rnystrom): This can print false positives since a script may be |
22 // produced by a transformer. Do something better. | 22 // produced by a transformer. Do something better. |
23 var binFiles = entrypoint.root.listFiles(beneath: "bin", recursive: false) | 23 var binFiles = entrypoint.root.listFiles( |
24 beneath: "bin", recursive: false, useGitIgnore: true) | |
Bob Nystrom
2015/08/26 23:21:44
Since this is copied in a few validators, how abou
nweiz
2015/08/27 19:07:56
I think adding a wrapper function that just change
| |
24 .map((path) => entrypoint.root.relative(path)) | 25 .map((path) => entrypoint.root.relative(path)) |
25 .toList(); | 26 .toList(); |
26 | 27 |
27 entrypoint.root.pubspec.executables.forEach((executable, script) { | 28 entrypoint.root.pubspec.executables.forEach((executable, script) { |
28 var scriptPath = p.join("bin", "$script.dart"); | 29 var scriptPath = p.join("bin", "$script.dart"); |
29 if (binFiles.contains(scriptPath)) return; | 30 if (binFiles.contains(scriptPath)) return; |
30 | 31 |
31 warnings.add('Your pubspec.yaml lists an executable "$executable" that ' | 32 warnings.add('Your pubspec.yaml lists an executable "$executable" that ' |
32 'points to a script "$scriptPath" that does not exist.'); | 33 'points to a script "$scriptPath" that does not exist.'); |
33 }); | 34 }); |
34 } | 35 } |
35 } | 36 } |
OLD | NEW |