Skip to content

Commit d33ca61

Browse files
committed
prepare release 1.1.0
1 parent 844fa06 commit d33ca61

10 files changed

+20
-2520
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
build/
88
# If you're building an application, you may want to check-in your pubspec.lock
99
pubspec.lock
10+
*.reflectable.dart
1011

1112
# Directory created by dartdoc
1213
# If you don't generate documentation locally you can remove this line.

.travis.yml

+2
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,7 @@ language: dart
22
xvfb: false
33
dart:
44
- stable
5+
script:
6+
- pub run build_runner build
57
dart_task:
68
- test: --platform vm ./test/test.dart

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 1.1.0
2+
3+
* Update build process, from now on relying on build_runner over build.yaml
4+
15
## 1.0.9
26

37
* Added support for derived classes

bin/build.dart

-21
This file was deleted.

bin/builder.application.dart

-42
This file was deleted.

bin/watch.dart

-21
This file was deleted.

build.yaml

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
targets:
2+
$default:
3+
builders:
4+
reflectable:
5+
generate_for:
6+
- test/test.dart
7+
- example/example.dart
8+
options:
9+
formatted: true

0 commit comments

Comments
 (0)