Fixed to work with sdk 2.10.x
This commit is contained in:
parent
10192bd29a
commit
a32bb29af6
1 changed files with 30 additions and 47 deletions
77
pubspec.yaml
77
pubspec.yaml
|
@ -5,28 +5,6 @@ environment:
|
|||
sdk: '>=2.10.0 <3.0.0'
|
||||
homepage: https://github.com/angel-dart/angel
|
||||
dependencies:
|
||||
angel_auth: ^2.0.0 # Supports stateless authentication via JWT
|
||||
angel_configuration: ^2.0.0 # Loads application configuration, along with support for .env files.
|
||||
angel_framework: ^2.0.0 # The core server library.
|
||||
angel_jael: ^2.0.0 # Server-side templating engine
|
||||
angel_migration: ^2.0.0 # Migration runtime support
|
||||
angel_orm: ^2.0.0 # Migration runtime support
|
||||
angel_orm_postgres: ^1.0.0 # PostgreSQL support for Angel ORM
|
||||
angel_serialize: ^2.0.0 # Serialization runtime support
|
||||
angel_production: ^1.0.0 # Production application runner.
|
||||
angel_static: ^2.0.0 # Static file server
|
||||
angel_validate: ^2.0.0 # Allows for validation of input data
|
||||
dev_dependencies:
|
||||
angel_hot: ^2.0.0 # Hot-reloading support. :)
|
||||
angel_migration_runner: ^2.0.0 # Runs migrations
|
||||
angel_orm_generator: ^2.0.0 # Generates ORM libraries
|
||||
angel_serialize_generator: ^2.0.0 # Generates model serialization code
|
||||
angel_test: ^2.0.0 # Utilities for testing Angel servers.
|
||||
build_runner: ^1.0.0 # Runs builds
|
||||
io: ^0.3.2 # For pretty printing.
|
||||
pedantic: ^1.0.0 # Enforces Dart style conventions.
|
||||
test: ^1.0.0 # For unit testing.
|
||||
dependency_overrides:
|
||||
angel_auth:
|
||||
git:
|
||||
url: https://github.com/dukefirehawk/angel.git
|
||||
|
@ -47,31 +25,6 @@ dependency_overrides:
|
|||
url: https://github.com/dukefirehawk/angel.git
|
||||
ref: sdk-2.12.x
|
||||
path: packages/jael/angel_jael
|
||||
angel_production:
|
||||
git:
|
||||
url: https://github.com/dukefirehawk/angel.git
|
||||
ref: sdk-2.12.x
|
||||
path: packages/production
|
||||
angel_static:
|
||||
git:
|
||||
url: https://github.com/dukefirehawk/angel.git
|
||||
ref: sdk-2.12.x
|
||||
path: packages/static
|
||||
angel_validate:
|
||||
git:
|
||||
url: https://github.com/dukefirehawk/angel.git
|
||||
ref: sdk-2.12.x
|
||||
path: packages/validate
|
||||
angel_hot:
|
||||
git:
|
||||
url: https://github.com/dukefirehawk/angel.git
|
||||
ref: sdk-2.12.x
|
||||
path: packages/hot
|
||||
angel_test:
|
||||
git:
|
||||
url: https://github.com/dukefirehawk/angel.git
|
||||
ref: sdk-2.12.x
|
||||
path: packages/test
|
||||
angel_migration:
|
||||
git:
|
||||
url: https://github.com/dukefirehawk/angel.git
|
||||
|
@ -92,6 +45,27 @@ dependency_overrides:
|
|||
url: https://github.com/dukefirehawk/angel.git
|
||||
ref: sdk-2.12.x
|
||||
path: packages/serialize/angel_serialize
|
||||
angel_production:
|
||||
git:
|
||||
url: https://github.com/dukefirehawk/angel.git
|
||||
ref: sdk-2.12.x
|
||||
path: packages/production
|
||||
angel_static:
|
||||
git:
|
||||
url: https://github.com/dukefirehawk/angel.git
|
||||
ref: sdk-2.12.x
|
||||
path: packages/static
|
||||
angel_validate:
|
||||
git:
|
||||
url: https://github.com/dukefirehawk/angel.git
|
||||
ref: sdk-2.12.x
|
||||
path: packages/validate
|
||||
dev_dependencies:
|
||||
angel_hot:
|
||||
git:
|
||||
url: https://github.com/dukefirehawk/angel.git
|
||||
ref: sdk-2.12.x
|
||||
path: packages/hot
|
||||
angel_migration_runner:
|
||||
git:
|
||||
url: https://github.com/dukefirehawk/angel.git
|
||||
|
@ -107,6 +81,15 @@ dependency_overrides:
|
|||
url: https://github.com/dukefirehawk/angel.git
|
||||
ref: sdk-2.12.x
|
||||
path: packages/serialize/angel_serialize_generator
|
||||
angel_test:
|
||||
git:
|
||||
url: https://github.com/dukefirehawk/angel.git
|
||||
ref: sdk-2.12.x
|
||||
path: packages/test
|
||||
build_runner: ^1.11.5 # Runs builds
|
||||
io: ^0.3.0 # For pretty printing.
|
||||
pedantic: ^1.0.0 # Enforces Dart style conventions.
|
||||
test: ^1.0.0 # For unit testing.
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue