Updated angel3-basic
This commit is contained in:
parent
539696222d
commit
89dde22a52
4 changed files with 8 additions and 8 deletions
|
@ -4,7 +4,7 @@ import 'package:angel3_pretty_logging/angel3_pretty_logging.dart';
|
|||
import 'package:angel3_container/mirrors.dart';
|
||||
import 'package:angel3_framework/angel3_framework.dart';
|
||||
import 'package:angel3_hot/angel3_hot.dart';
|
||||
import 'package:angel3_basic/angel.dart';
|
||||
import 'package:angel/angel.dart';
|
||||
|
||||
void main() async {
|
||||
// Watch the config/ and web/ directories for changes, and hot-reload the server.
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
import 'package:angel3_container/mirrors.dart';
|
||||
import 'package:angel3_production/angel3_production.dart';
|
||||
import 'package:angel3_basic/angel.dart';
|
||||
import 'package:angel/angel.dart';
|
||||
|
||||
// NOTE: By default, the Runner class does not use the `MirrorsReflector`, or any
|
||||
// reflector, by default.
|
||||
|
|
10
pubspec.yaml
10
pubspec.yaml
|
@ -1,7 +1,7 @@
|
|||
name: angel3_basic
|
||||
name: angel
|
||||
version: 1.0.0
|
||||
description: A boilerplate template for building Angel3 application
|
||||
publish_to: none # Ensure we don't accidentally publish our private code! ;)
|
||||
publish_to: none
|
||||
homepage: https://github.com/dukefirehawk/boilerplates
|
||||
environment:
|
||||
sdk: '>=2.12.0 <3.0.0'
|
||||
|
@ -17,9 +17,9 @@ dependencies:
|
|||
dev_dependencies:
|
||||
angel3_hot: ^4.0.0
|
||||
angel3_test: ^4.0.0
|
||||
io: ^1.0.0 # For pretty printing.
|
||||
pedantic: ^1.11.0 # Enforces Dart style conventions.
|
||||
test: ^1.17.3 # For unit testing.
|
||||
io: ^1.0.0
|
||||
pedantic: ^1.11.0
|
||||
test: ^1.17.7
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
import 'package:angel3_framework/angel3_framework.dart';
|
||||
import 'package:angel3_test/angel3_test.dart';
|
||||
import 'package:test/test.dart';
|
||||
import 'package:angel3_basic/angel.dart';
|
||||
import 'package:angel/angel.dart';
|
||||
|
||||
// Angel also includes facilities to make testing easier.
|
||||
//
|
||||
|
|
Loading…
Reference in a new issue