Basic templat for SDK 2.12.x
This commit is contained in:
parent
a8dc7ef515
commit
4f1913d517
1 changed files with 38 additions and 11 deletions
49
pubspec.yaml
49
pubspec.yaml
|
@ -2,7 +2,7 @@ name: angel
|
|||
description: An app that's going to be amazing pretty soon.
|
||||
publish_to: none # Ensure we don't accidentally publish our private code! ;)
|
||||
environment:
|
||||
sdk: '>=2.10.0 <2.12.0'
|
||||
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
|
||||
|
@ -17,26 +17,53 @@ dev_dependencies:
|
|||
angel_test: ^2.0.0 # Utilities for testing Angel servers.
|
||||
io: ^0.3.2 # For pretty printing.
|
||||
pedantic: ^1.0.0 # Enforces Dart style conventions.
|
||||
test: ^1.0.0 # For unit testing.
|
||||
test: ^1.15.7 # For unit testing.
|
||||
dependency_overrides:
|
||||
angel_auth:
|
||||
path: ../angel/packages/auth
|
||||
git:
|
||||
url: https://github.com/dukefirehawk/angel.git
|
||||
ref: sdk-2.12.x
|
||||
path: packages/auth
|
||||
angel_configuration:
|
||||
path: ../angel/packages/configuration
|
||||
git:
|
||||
url: https://github.com/dukefirehawk/angel.git
|
||||
ref: sdk-2.12.x
|
||||
path: packages/configuration
|
||||
angel_framework:
|
||||
path: ../angel/packages/framework
|
||||
git:
|
||||
url: https://github.com/dukefirehawk/angel.git
|
||||
ref: sdk-2.12.x
|
||||
path: packages/framework
|
||||
angel_jael:
|
||||
path: ../angel/packages/jael/angel_jael
|
||||
git:
|
||||
url: https://github.com/dukefirehawk/angel.git
|
||||
ref: sdk-2.12.x
|
||||
path: packages/jael/angel_jael
|
||||
angel_production:
|
||||
path: ../angel/packages/production
|
||||
git:
|
||||
url: https://github.com/dukefirehawk/angel.git
|
||||
ref: sdk-2.12.x
|
||||
path: packages/production
|
||||
angel_static:
|
||||
path: ../angel/packages/static
|
||||
git:
|
||||
url: https://github.com/dukefirehawk/angel.git
|
||||
ref: sdk-2.12.x
|
||||
path: packages/static
|
||||
angel_validate:
|
||||
path: ../angel/packages/validate
|
||||
git:
|
||||
url: https://github.com/dukefirehawk/angel.git
|
||||
ref: sdk-2.12.x
|
||||
path: packages/validate
|
||||
angel_hot:
|
||||
path: ../angel/packages/hot
|
||||
git:
|
||||
url: https://github.com/dukefirehawk/angel.git
|
||||
ref: sdk-2.12.x
|
||||
path: packages/hot
|
||||
angel_test:
|
||||
path: ../angel/packages/test
|
||||
git:
|
||||
url: https://github.com/dukefirehawk/angel.git
|
||||
ref: sdk-2.12.x
|
||||
path: packages/test
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue