Ignore imported packages when building docs
Closed this issue · 2 comments
sethladd commented
Just tried to build the docs for lawndart (thanks for the PR!)
See result here: http://sethladd.github.com/lawndart/
How to hide meta and metadata and only show lawndart?
kevmoo commented
addTask('docs', createDartDocTask(['lib/lawndart.dart'],
linkApi: true,
excludeLibs: ['meta', 'metadata']
));
...and star this issue: https://code.google.com/p/dart/issues/detail?id=5460
😄
sethladd commented
Thanks!