Updated angel3-basic

This commit is contained in:
thomashii 2021-06-14 08:02:15 +08:00
parent 539696222d
commit 89dde22a52
4 changed files with 8 additions and 8 deletions

View file

@ -4,7 +4,7 @@ import 'package:angel3_pretty_logging/angel3_pretty_logging.dart';
import 'package:angel3_container/mirrors.dart'; import 'package:angel3_container/mirrors.dart';
import 'package:angel3_framework/angel3_framework.dart'; import 'package:angel3_framework/angel3_framework.dart';
import 'package:angel3_hot/angel3_hot.dart'; import 'package:angel3_hot/angel3_hot.dart';
import 'package:angel3_basic/angel.dart'; import 'package:angel/angel.dart';
void main() async { void main() async {
// Watch the config/ and web/ directories for changes, and hot-reload the server. // Watch the config/ and web/ directories for changes, and hot-reload the server.

View file

@ -1,6 +1,6 @@
import 'package:angel3_container/mirrors.dart'; import 'package:angel3_container/mirrors.dart';
import 'package:angel3_production/angel3_production.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 // NOTE: By default, the Runner class does not use the `MirrorsReflector`, or any
// reflector, by default. // reflector, by default.

View file

@ -1,7 +1,7 @@
name: angel3_basic name: angel
version: 1.0.0 version: 1.0.0
description: A boilerplate template for building Angel3 application 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 homepage: https://github.com/dukefirehawk/boilerplates
environment: environment:
sdk: '>=2.12.0 <3.0.0' sdk: '>=2.12.0 <3.0.0'
@ -17,9 +17,9 @@ dependencies:
dev_dependencies: dev_dependencies:
angel3_hot: ^4.0.0 angel3_hot: ^4.0.0
angel3_test: ^4.0.0 angel3_test: ^4.0.0
io: ^1.0.0 # For pretty printing. io: ^1.0.0
pedantic: ^1.11.0 # Enforces Dart style conventions. pedantic: ^1.11.0
test: ^1.17.3 # For unit testing. test: ^1.17.7

View file

@ -1,7 +1,7 @@
import 'package:angel3_framework/angel3_framework.dart'; import 'package:angel3_framework/angel3_framework.dart';
import 'package:angel3_test/angel3_test.dart'; import 'package:angel3_test/angel3_test.dart';
import 'package:test/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. // Angel also includes facilities to make testing easier.
// //