Skip to content

Commit 29ca92c

Browse files
authored
Update docs for new task runner (#3526)
1 parent a8e0d17 commit 29ca92c

File tree

3 files changed

+39
-27
lines changed

3 files changed

+39
-27
lines changed

.gitattributes

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
lib/src/version.dart linguist-generated=false
66
lib/src/html/resources.g.dart linguist-generated=false
77

8-
# Don't force devs to manually resolve conflicts in generated files. At the end
9-
# of a rebase or a merge, the dev may still need to regenerate these files with
10-
# `dart run build_runner build` or `dart run grinder build-web`.
8+
# Don't force devs to manually resolve conflicts in generated files.
9+
# At the end of a rebase or a merge, the dev may still need to regenerate
10+
# these files with `dart run tool/task.dart build`.
1111
lib/resources/docs.dart.js merge=theirs
1212
lib/resources/docs.dart.js.map merge=theirs
1313
lib/src/generator/templates.aot_renderers_for_html.dart merge=theirs

CONTRIBUTING.md

+35-23
Original file line numberDiff line numberDiff line change
@@ -1,58 +1,70 @@
11
# Contribute to dartdoc
22

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.
55

66
## Can I help?
77

88
Yes!
99

1010
Start by [using the tool](README.md) and filing issues and requests.
1111

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.
1414

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!
1819

1920
[![Build Status](https://github.com/dart-lang/dartdoc/workflows/Test/badge.svg)](https://github.com/dart-lang/dartdoc/actions?query=workflow%3ATest)
2021

2122
## Making Changes
2223

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!
3038

3139
## Testing
3240

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.
3543

3644
```bash
3745
# 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
3947

4048
# Build the SDK docs with the head version and compare its warning
4149
# output and (rough) performance to the main version.
42-
grind compare-sdk-warnings
50+
dart run tool/task.dart compare sdk-warnings
4351

4452
# 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
4654

4755
# 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
4957
```
5058

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.
5262

5363
## License
5464

55-
Please see the [dartdoc license](https://github.com/dart-lang/dartdoc/blob/main/LICENSE).
65+
Please see the [dartdoc license][].
5666

57-
[user docs]: https://github.com/dart-lang/dartdoc#dartdoc
67+
[user docs]: https://github.com/dart-lang/dartdoc#dart-documentation-generator
5868
[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

tool/task.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ Future<void> runBuildbot() async {
194194

195195
Future<void> runClean() async {
196196
// This involves deleting things, so be careful.
197-
if (!File(path.join('tool', 'grind.dart')).existsSync()) {
197+
if (!File(path.join('tool', 'task.dart')).existsSync()) {
198198
throw FileSystemException('Wrong CWD, run from root of dartdoc package');
199199
}
200200
const pubDataFileNames = {'.dart_tool', '.packages', 'pubspec.lock'};

0 commit comments

Comments
 (0)