Skip to content

Commit a6fad37

Browse files
committed
Flatten again.
1 parent 56a0148 commit a6fad37

File tree

385 files changed

+8610
-6049
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

385 files changed

+8610
-6049
lines changed

appveyor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# BSD-style license that can be found in the LICENSE file.
44

55
install:
6-
- ps: wget https://gsdview.appspot.com/dart-archive/channels/stable/raw/latest/sdk/dartsdk-windows-x64-release.zip -OutFile dart-sdk.zip
6+
- ps: wget https://gsdview.appspot.com/dart-archive/channels/dev/raw/latest/sdk/dartsdk-windows-x64-release.zip -OutFile dart-sdk.zip
77
- cmd: echo "Unzipping dart-sdk..."
88
- cmd: 7z x dart-sdk.zip -o"C:\tools" -y > nul
99
- set PATH=%PATH%;C:\tools\dart-sdk\bin

bin/dartdoc.dart

+5-3
Original file line numberDiff line numberDiff line change
@@ -261,11 +261,11 @@ main(List<String> arguments) async {
261261
reexportMinConfidence:
262262
double.parse(args['ambiguous-reexport-scorer-min-confidence']),
263263
verboseWarnings: args['verbose-warnings'],
264+
excludePackages: args['exclude-packages'],
264265
dropTextFrom: dropTextFrom);
265266

266267
DartDoc dartdoc = new DartDoc(inputDir, excludeLibraries, sdkDir, generators,
267-
outputDir, packageMeta, includeLibraries,
268-
includeExternals: includeExternals);
268+
outputDir, packageMeta, includeLibraries, includeExternals);
269269

270270
dartdoc.onCheckProgress.listen(logProgress);
271271
await Chain.capture(() async {
@@ -275,7 +275,7 @@ main(List<String> arguments) async {
275275
},
276276
zoneSpecification: new ZoneSpecification(
277277
print: (Zone self, ZoneDelegate parent, Zone zone, String line) =>
278-
logPrint(line) ));
278+
logPrint(line)));
279279
}, onError: (e, Chain chain) {
280280
if (e is DartDocFailure) {
281281
stderr.writeln('\nGeneration failed: ${e}.');
@@ -325,6 +325,8 @@ ArgParser _createArgsParser() {
325325
'(optional text next to the package name and version).');
326326
parser.addOption('exclude',
327327
allowMultiple: true, splitCommas: true, help: 'Library names to ignore.');
328+
parser.addOption('exclude-packages',
329+
allowMultiple: true, splitCommas: true, help: 'Package names to ignore.');
328330
parser.addOption('include',
329331
allowMultiple: true,
330332
splitCommas: true,

0 commit comments

Comments
 (0)