Updated Hot
This commit is contained in:
parent
57f4c0d618
commit
9db875329d
3 changed files with 12 additions and 9 deletions
packages/hot
|
@ -1,5 +1,9 @@
|
||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 4.3.0
|
||||||
|
|
||||||
|
* Updated to use `vm_service` 8.1.0
|
||||||
|
|
||||||
## 4.2.2
|
## 4.2.2
|
||||||
|
|
||||||
* Fixed '!' operator warning
|
* Fixed '!' operator warning
|
||||||
|
@ -11,7 +15,7 @@
|
||||||
## 4.2.0
|
## 4.2.0
|
||||||
|
|
||||||
* Updated to use `belatuk_html_builder` package
|
* Updated to use `belatuk_html_builder` package
|
||||||
* Upgraded from `pendantic` to `lints` linter
|
* Upgraded to `lints` linter
|
||||||
|
|
||||||
## 4.1.1
|
## 4.1.1
|
||||||
|
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
# Angel3 Hot Reloader
|
# Angel3 Hot Reloader
|
||||||
|
|
||||||
[](https://pub.dev/packages/angel3_hot)
|

|
||||||
[](https://dart.dev/null-safety)
|
[](https://dart.dev/null-safety)
|
||||||
[](https://gitter.im/angel_dart/discussion)
|
[](https://gitter.im/angel_dart/discussion)
|
||||||
[](https://github.com/dukefirehawk/angel/tree/master/packages/hot/LICENSE)
|
[](https://github.com/dukefirehawk/angel/tree/master/packages/hot/LICENSE)
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
|
@ -18,8 +18,8 @@ In your `pubspec.yaml`:
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
dependencies:
|
dependencies:
|
||||||
angel3_framework: ^4.1.0
|
angel3_framework: ^4.2.0
|
||||||
angel3_hot: ^4.2.0
|
angel3_hot: ^4.3.0
|
||||||
```
|
```
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
@ -49,8 +49,7 @@ import 'src/foo.dart';
|
||||||
|
|
||||||
main() async {
|
main() async {
|
||||||
var hot = new HotReloader(createServer, [
|
var hot = new HotReloader(createServer, [
|
||||||
new Directory('src'),
|
Directory('src'),
|
||||||
new Directory('src'),
|
|
||||||
'main.dart',
|
'main.dart',
|
||||||
Uri.parse('package:angel3_hot/angel3_hot.dart')
|
Uri.parse('package:angel3_hot/angel3_hot.dart')
|
||||||
]);
|
]);
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
name: angel3_hot
|
name: angel3_hot
|
||||||
description: Supports hot reloading/hot code push of Angel3 servers on file changes.
|
description: Supports hot reloading/hot code push of Angel3 servers on file changes.
|
||||||
version: 4.2.2
|
version: 4.3.0
|
||||||
homepage: https://angel3-framework.web.app/
|
homepage: https://angel3-framework.web.app/
|
||||||
repository: https://github.com/dukefirehawk/angel/tree/master/packages/hot
|
repository: https://github.com/dukefirehawk/angel/tree/master/packages/hot
|
||||||
environment:
|
environment:
|
||||||
|
@ -13,7 +13,7 @@ dependencies:
|
||||||
glob: ^2.0.1
|
glob: ^2.0.1
|
||||||
io: ^1.0.0
|
io: ^1.0.0
|
||||||
path: ^1.8.0
|
path: ^1.8.0
|
||||||
vm_service: ^7.1.0
|
vm_service: ^8.1.0
|
||||||
watcher: ^1.0.0
|
watcher: ^1.0.0
|
||||||
dev_dependencies:
|
dev_dependencies:
|
||||||
http: ^0.13.2
|
http: ^0.13.2
|
||||||
|
|
Loading…
Reference in a new issue