restarter 0.1.1 restarter: ^0.1.1 copied to clipboard
Restarter is a tool that detects file changes and automatically restarts the application.
example/restarter_example.dart
import 'package:restarter/restarter.dart';
void main() {
final restarter = Restarter(
'dart',
args: ['example/counter.dart'],
watch: ['*.dart', 'pubspec.lock'],
);
restarter.start();
}