Split angel_orm pkg
This commit is contained in:
parent
9d2829b34d
commit
d097f6bb35
5 changed files with 7 additions and 2 deletions
|
@ -16,5 +16,6 @@
|
||||||
<orderEntry type="inheritedJdk" />
|
<orderEntry type="inheritedJdk" />
|
||||||
<orderEntry type="sourceFolder" forTests="false" />
|
<orderEntry type="sourceFolder" forTests="false" />
|
||||||
<orderEntry type="library" name="Dart SDK" level="project" />
|
<orderEntry type="library" name="Dart SDK" level="project" />
|
||||||
|
<orderEntry type="library" name="Dart Packages" level="project" />
|
||||||
</component>
|
</component>
|
||||||
</module>
|
</module>
|
|
@ -1,3 +1,6 @@
|
||||||
|
# 1.0.0-alpha+10
|
||||||
|
* Split into `angel_orm.dart` and `server.dart`. Prevents DDC failures.
|
||||||
|
|
||||||
# 1.0.0-alpha+7
|
# 1.0.0-alpha+7
|
||||||
* Added a `@belongsToMany` annotation class.
|
* Added a `@belongsToMany` annotation class.
|
||||||
* Resolved [#20](https://github.com/angel-dart/orm/issues/20). The
|
* Resolved [#20](https://github.com/angel-dart/orm/issues/20). The
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
export 'src/annotations.dart';
|
export 'src/annotations.dart';
|
||||||
export 'src/migration.dart';
|
export 'src/migration.dart';
|
||||||
export 'src/pool.dart';
|
|
||||||
export 'src/relations.dart';
|
export 'src/relations.dart';
|
||||||
export 'src/query.dart';
|
export 'src/query.dart';
|
2
angel_orm/lib/server.dart
Normal file
2
angel_orm/lib/server.dart
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
export 'src/pool.dart';
|
||||||
|
export 'angel_orm.dart';
|
|
@ -1,5 +1,5 @@
|
||||||
name: angel_orm
|
name: angel_orm
|
||||||
version: 1.0.0-alpha+9
|
version: 1.0.0-alpha+10
|
||||||
description: Runtime support for Angel's ORM.
|
description: Runtime support for Angel's ORM.
|
||||||
author: Tobe O <thosakwe@gmail.com>
|
author: Tobe O <thosakwe@gmail.com>
|
||||||
homepage: https://github.com/angel-dart/orm
|
homepage: https://github.com/angel-dart/orm
|
||||||
|
|
Loading…
Reference in a new issue