|
1 | 1 | # Contribute to dartdoc
|
2 | 2 |
|
3 |
| -To _use_ the dartdoc tool, see the [user docs][]. This page contains |
4 |
| -information relevant for contributors to the dartdoc project. |
| 3 | +To _use_ the dartdoc tool, see the [user docs][]. |
| 4 | +This page contains information relevant for contributors to the dartdoc project. |
5 | 5 |
|
6 | 6 | ## Can I help?
|
7 | 7 |
|
8 | 8 | Yes!
|
9 | 9 |
|
10 | 10 | Start by [using the tool](README.md) and filing issues and requests.
|
11 | 11 |
|
12 |
| -See the [dartdoc API](https://pub.dev/documentation/dartdoc/latest/) docs, generated by |
13 |
| -dartdoc. |
| 12 | +See the [dartdoc API](https://pub.dev/documentation/dartdoc/latest/) docs, |
| 13 | +generated by dartdoc. |
14 | 14 |
|
15 |
| -If you want to contribute, check out the [issue tracker][] and see if there's an |
16 |
| -issue that you're passionate about. If you want to add a new feature that's not |
17 |
| -yet in the issue tracker, start by opening an issue. Thanks! |
| 15 | +If you want to contribute, check out the [issue tracker][] and |
| 16 | +see if there's an issue that you're passionate about. |
| 17 | +If you want to add a new feature that's not yet in the issue tracker, |
| 18 | +start by opening an issue. Thanks! |
18 | 19 |
|
19 | 20 | [](https://github.com/dart-lang/dartdoc/actions?query=workflow%3ATest)
|
20 | 21 |
|
21 | 22 | ## Making Changes
|
22 | 23 |
|
23 |
| -1. `grind` is needed to run dartdoc integration tests, see installed via `pub global activate grinder`. |
24 |
| -2. When a change is user-facing, please add a new entry to the [changelog](https://github.com/dart-lang/dartdoc/blob/main/CHANGELOG.md) |
25 |
| -3. Please include a test for your change. `dartdoc` has both `package:test`-style unittests as well as integration tests. To run the unittests, use `grind test`. |
26 |
| -4. For major changes, run `grind compare-sdk-warnings` and `grind compare-flutter-warnings`, and include the summary results in your pull request. |
27 |
| -5. Be sure to format your Dart code using `dart format`, otherwise our CI will complain. |
28 |
| -6. Use `grind presubmit` before creating a pull request to quickly check for common problems. |
29 |
| -7. Post your change via a pull request for review and integration! |
| 24 | +1. When a change is user-facing, please add a new entry |
| 25 | + to the [changelog][] under the current `-wip` version. |
| 26 | +2. Please include a test for your change. `dartdoc` has both |
| 27 | + `package:test`-style unit tests as well as integration tests. |
| 28 | + To run the tests, use `dart run tool/task.dart test`. |
| 29 | +3. For major changes, run both `dart run tool/task.dart compare sdk-warnings` |
| 30 | + and `dart run tool/task.dart compare flutter-warnings`, and |
| 31 | + include the summary results in your pull request. |
| 32 | +4. Be sure to format your Dart code using `dart format`, |
| 33 | + otherwise our CI will complain. |
| 34 | +5. Use `dart run tool/task.dart buildbot` before creating a pull request |
| 35 | + to quickly check for common problems. |
| 36 | + Follow any instructions it outputs, then run again. |
| 37 | +6. Post your change via a pull request for review and integration! |
30 | 38 |
|
31 | 39 | ## Testing
|
32 | 40 |
|
33 |
| -dartdoc has a number of grinder utility methods that can be used to check for behavior changes |
34 |
| -or try out your change on arbitrary packages. |
| 41 | +dartdoc has a number of utility command that can be used to |
| 42 | +check for behavior changes or try out your change on arbitrary packages. |
35 | 43 |
|
36 | 44 | ```bash
|
37 | 45 | # Serve the latest version of the given package locally on port 9000.
|
38 |
| -PACKAGE_NAME=angular_components grind serve-pub-package |
| 46 | +dart run tool/task.dart serve package --name=intl |
39 | 47 |
|
40 | 48 | # Build the SDK docs with the head version and compare its warning
|
41 | 49 | # output and (rough) performance to the main version.
|
42 |
| -grind compare-sdk-warnings |
| 50 | +dart run tool/task.dart compare sdk-warnings |
43 | 51 |
|
44 | 52 | # Serve the flutter docs built with the head version on port 8001.
|
45 |
| -grind serve-flutter-docs |
| 53 | +dart run tool/task.dart serve flutter |
46 | 54 |
|
47 | 55 | # Serve the test package (testing/test_package) on port 8002
|
48 |
| -grind serve-test-package-docs |
| 56 | +dart run tool/task.dart serve testing-package |
49 | 57 | ```
|
50 | 58 |
|
51 |
| -There are more added all the time -- run `grind --help` to see them all. |
| 59 | +There are more commands added all the time, |
| 60 | +check out `tool/task.dart` to find each command or |
| 61 | +learn how they are implemented. |
52 | 62 |
|
53 | 63 | ## License
|
54 | 64 |
|
55 |
| -Please see the [dartdoc license](https://github.com/dart-lang/dartdoc/blob/main/LICENSE). |
| 65 | +Please see the [dartdoc license][]. |
56 | 66 |
|
57 |
| -[user docs]: https://github.com/dart-lang/dartdoc#dartdoc |
| 67 | +[user docs]: https://github.com/dart-lang/dartdoc#dart-documentation-generator |
58 | 68 | [issue tracker]: https://github.com/dart-lang/dartdoc/issues
|
| 69 | +[changelog]: https://github.com/dart-lang/dartdoc/blob/main/CHANGELOG.md |
| 70 | +[dartdoc license]: https://github.com/dart-lang/dartdoc/blob/main/LICENSE |
0 commit comments