File tree Expand file tree Collapse file tree 3 files changed +12
-3
lines changed
Expand file tree Collapse file tree 3 files changed +12
-3
lines changed Original file line number Diff line number Diff line change 1+ ## 0.19.1-wip
2+
3+ - Added links to the ` build ` and ` link ` methods as primary entry points.
4+
15## 0.19.0
26
37- Split up ` package:native_assets_cli ` in ` package:hooks ` ,
Original file line number Diff line number Diff line change 22// for details. All rights reserved. Use of this source code is governed by a
33// BSD-style license that can be found in the LICENSE file.
44
5- /// A library that contains the argument and file formats for implementing a
6- /// build hook (`hook/build.dart` ).
5+ /// A library that contains the protocol for implementing hooks.
6+ ///
7+ /// The main entrypoint for build hooks (`hook/build.dart` ) is [build] . The main
8+ /// entrypoint for link hooks (`hook/link.dart` ) is [link] .
79library ;
810
11+ import 'src/api/build.dart' ;
12+ import 'src/api/link.dart' ;
13+
914export 'src/api/build.dart' show build;
1015export 'src/api/builder.dart' show Builder;
1116export 'src/api/link.dart' show link;
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ description: >-
33 A library that contains a Dart API for the JSON-based protocol for
44 `hook/build.dart` and `hook/link.dart`.
55
6- version : 0.19.0
6+ version : 0.19.1-wip
77
88repository : https://github.com/dart-lang/native/tree/main/pkgs/hooks
99
You can’t perform that action at this time.
0 commit comments