Replace manual generate_version.dart script with a custom build_runner builder that automatically generates lib/version.g.dart from pubspec.yaml during the build process. This eliminates manual steps and ensures version info stays in sync. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
14 lines
404 B
Dart
14 lines
404 B
Dart
// GENERATED FILE - DO NOT EDIT
|
|
// Generated by build_runner from pubspec.yaml
|
|
|
|
/// Application version information from pubspec.yaml
|
|
class AppVersion {
|
|
AppVersion._();
|
|
|
|
static const String name = 'tatlock_ui';
|
|
static const String description = 'Tatlock - a Home Lab AI';
|
|
static const String version = '0.2.0';
|
|
static const int buildNumber = 2;
|
|
static const String fullVersion = '0.2.0+2';
|
|
}
|