This commit is contained in:
Tobe O 2018-07-15 00:51:23 -04:00
parent bd8dc2c53f
commit b3379ee418
3 changed files with 6 additions and 3 deletions

View file

@ -1,3 +1,6 @@
# 1.3.4
* Fix another typo.
# 1.3.3
* Fix a small typo in the model generator.

View file

@ -73,8 +73,8 @@ class ModelCommand extends Command {
}
modelLib.body.addAll([
new Code('part ${rc.snakeCase}.g.dart;'),
new Code('part ${rc.snakeCase}.serializer.g.dart;'),
new Code("part '${rc.snakeCase}.g.dart';"),
new Code("part '${rc.snakeCase}.serializer.g.dart';"),
]);
modelLib.body.add(new Class((modelClazz) {

View file

@ -2,7 +2,7 @@ author: Tobe O <thosakwe@gmail.com>
description: Command-line tools for the Angel framework.
homepage: https://github.com/angel-dart/angel_cli
name: angel_cli
version: 1.3.3
version: 1.3.4
dependencies:
analyzer: ">=0.32.0"
args: ^1.0.0