bump pubspec verion, add changelog
3 files changed
tree: 51ef9a5e9053e15345a094f84f5d614fdbcd5942
  1. bin/
  2. example/
  3. lib/
  4. test/
  5. test_package/
  6. tool/
  7. .gitignore
  8. .project
  9. .travis.yml
  10. CHANGELOG.md
  11. LICENSE
  12. pubspec.lock
  13. pubspec.yaml
  14. README.md
README.md

dartdoc

A documentation generator for Dart. This tool produces static HTML files, produced from Dart source code.

Build Status Coverage Status

Note: This tool is currently in alpha stage.

Installing dartdoc

Run pub global activate dartdoc to install the dartdoc tool.

Running dartdoc

Generating documentation for a package

Run dartdoc from the root directory of package. By default, the documentation is output to the docs directory. You can use --output to specify the output directory.

Generating documentation for Dart SDK

Run dartdoc with the following command line arguments:

  • --dart-sdk /pathTo/dart-sdk
  • --sdk-docs

FAQ

What about docgen/dartdocgen/dartdoc-viewer?

This new tool intends to replace our existing set of API documentation tools. We'll take the best ideas and implementations from our existing doc tools and fold them into this tool.

Can I help?

Yes! Start by using the tool and filing issues and requests. If you want to contribute, check out the issue tracker and see if there‘s an issue that you’re passionate about. If you want to add a new feature that's not yet in the issue tracker, start by opening an issue. Thanks!

Issues and bugs

Please file reports on the GitHub Issue Tracker.

Developing

Publishing to pub

It's easy to publish to pub. To bump the build version and run pub publish, run the following:

pub global activate grinder
grind publish

License

You can view our license here.