Watch and Restart made easy.
Restarter is a tool that detects file changes and automatically restarts the application.
import 'package:restarter/restarter.dart';
void main() {
final restarter = Restarter(
'dart',
args: ['example/counter.dart'],
watch: ['*.dart', 'pubspec.lock'],
);
restarter.start();
}
Please file feature requests and bugs at the issue tracker.
MIT