Skip to content

Commit d19de8c

Browse files
authored
chore(dart_frog_gen): v0.1.0 (#278)
1 parent 2697bbb commit d19de8c

File tree

3 files changed

+14
-3
lines changed

3 files changed

+14
-3
lines changed

packages/dart_frog_gen/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 0.1.0
2+
3+
- chore: stable 0.1.0 release
4+
15
# 0.0.2-dev.8
26

37
- fix: do not report rogue route if index.dart exists

packages/dart_frog_gen/README.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,16 @@ Code generation tooling for [Dart Frog][dart_frog_link].
1111

1212
Developed with 💙 by [Very Good Ventures][very_good_ventures_link] 🦄
1313

14-
## Experimental 🚧
14+
```dart
15+
import 'dart:io';
1516
16-
`dart_frog_gen` is an experimental project under development and should not be used in production at this time.
17+
import 'package:dart_frog_gen/dart_frog_gen.dart';
18+
19+
void main() {
20+
final routeConfiguration = buildRouteConfiguration(Directory.current);
21+
// Use the route configuration...
22+
}
23+
```
1724

1825
[ci_badge]: https://github.com/VeryGoodOpenSource/dart_frog/actions/workflows/dart_frog.yaml/badge.svg
1926
[ci_link]: https://github.com/VeryGoodOpenSource/dart_frog/actions/workflows/dart_frog.yaml

packages/dart_frog_gen/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: dart_frog_gen
22
description: Code generation tooling for Dart Frog. Built by Very Good Ventures.
3-
version: 0.0.2-dev.8
3+
version: 0.1.0
44
homepage: https://dartfrog.vgv.dev
55
repository: https://github.com/VeryGoodOpenSource/dart_frog
66
issue_tracker: https://github.com/VeryGoodOpenSource/dart_frog/issues

0 commit comments

Comments
 (0)