Skip to content

Commit 0246ed2

Browse files
authored
Finish updating outdate links across packages (#2375)
1 parent a572730 commit 0246ed2

File tree

8 files changed

+11
-11
lines changed

8 files changed

+11
-11
lines changed

build_runner/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -249,8 +249,8 @@ $ pub run test
249249
[build_extensions]: https://pub.dev/documentation/build/latest/build/Builder/buildExtensions.html
250250

251251
[travis]: https://travis-ci.org/
252-
[dev_sdk]: https://www.dartlang.org/install
253-
[dev_dependencies]: https://www.dartlang.org/tools/pub/dependencies#dev-dependencies
254-
[pubspec]: https://www.dartlang.org/tools/pub/pubspec
252+
[dev_sdk]: https://dart.dev/get-dart
253+
[dev_dependencies]: https://dart.dev/tools/pub/dependencies#dev-dependencies
254+
[pubspec]: https://dart.dev/tools/pub/pubspec
255255
[file_an_issue]: https://github.com/dart-lang/build/issues/new
256256
[pull_request]: https://github.com/dart-lang/build/pulls

build_test/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ test('should resolve a simple dart file', () async {
109109
* [`StubAssetReader`][api:StubAssetReader]
110110
* [`StubAssetWriter`][api:StubAssetWriter]
111111

112-
[development dependency]: https://www.dartlang.org/tools/pub/dependencies#dev-dependencies
112+
[development dependency]: https://dart.dev/tools/pub/dependencies#dev-dependencies
113113
[`package:build`]: https://pub.dev/packages/build
114114

115115
[api:FakeWatcher]: https://pub.dev/documentation/build_test/latest/build_test/FakeWatcher-class.html

build_vm_compilers/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,5 +66,5 @@ builder applications to what you already have, sometime after the
6666
]
6767
```
6868

69-
[development dependency]: https://www.dartlang.org/tools/pub/dependencies#dev-dependencies
69+
[development dependency]: https://dart.dev/tools/pub/dependencies#dev-dependencies
7070
[`package:build`]: https://pub.dev/packages/build

build_web_compilers/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,5 +97,5 @@ the list (unless you need to post-process the js files).
9797
]
9898
```
9999

100-
[development dependency]: https://www.dartlang.org/tools/pub/dependencies#dev-dependencies
100+
[development dependency]: https://dart.dev/tools/pub/dependencies#dev-dependencies
101101
[`package:build`]: https://pub.dev/packages/build

docs/faq.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ targets:
4242
4343
By default, the `build_runner` package only includes some specifically
4444
whitelisted directories, derived from the [package layout conventions](
45-
https://www.dartlang.org/tools/pub/package-layout).
45+
https://dart.dev/tools/pub/package-layout).
4646

4747
If you have some additional files which you would like to be included as part of
4848
the build, you will need a custom `build.yaml` file. You will want to modify the

docs/getting_started.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
To use `build_runner`, you need a 2.x version of
44
the Dart SDK.
55

6-
* [Automated installers](https://www.dartlang.org/install#automated-installation-and-updates)
7-
* [Direct downloads](https://www.dartlang.org/install/archive#dev-channel)
6+
* [Automated installers](https://dart.dev/get-dart#install)
7+
* [Direct downloads](https://dart.dev/tools/sdk/archive#dev-channel)
88

99
If you have issues using `build_runner`, see the
1010
[Troubleshooting section](#troubleshooting), below.

docs/hot_module_reloading.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ Accessing properties of provided `child` object is tricky thing. As dart librari
6363
themselves, the provided object is an arbitrary JavaScript object with properties matched with
6464
exported symbols in the child library. To access them you need to use either
6565
[`package:js`](https://pub.dev/packages/js) or
66-
[`dart:js_utils`](https://api.dartlang.org/stable/2.0.0/dart-js_util/dart-js_util-library.html).
66+
[`dart:js_util`](https://api.dart.dev/stable/2.4.0/dart-js_util/dart-js_util-library.html).
6767
See example below for details how to use it.
6868

6969
May return nullable bool. To indicate that reload of child completes

docs/transforming_code.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Unlike the [old `barback` and `pub`][pub] asset systems, it's not permitted to overwrite or otherwise transform existing on-disk files as part of the build process, and our newer build tools and packages will throw exceptions if this is attempted.
44

5-
[pub]: https://www.dartlang.org/tools/pub/transformers
5+
[pub]: https://dart.dev/tools/pub/obsolete
66

77
## Examples
88

0 commit comments

Comments
 (0)