Add version builder
This commit is contained in:
parent
7000b13c14
commit
2ff82e1730
@ -16,3 +16,11 @@ builders:
|
|||||||
- lib/ui/licenses.moxxy.dart
|
- lib/ui/licenses.moxxy.dart
|
||||||
build_to: source
|
build_to: source
|
||||||
auto_apply: root_package
|
auto_apply: root_package
|
||||||
|
versionBuilder:
|
||||||
|
import: "package:moxxyv2_builders/version.dart"
|
||||||
|
builder_factories: [ "versionBuilder" ]
|
||||||
|
build_extensions:
|
||||||
|
pubspec.yaml:
|
||||||
|
- lib/shared/version.moxxy.dart
|
||||||
|
build_to: source
|
||||||
|
auto_apply: root_package
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
import "dart:io";
|
import "dart:io";
|
||||||
|
|
||||||
import "package:build/build.dart";
|
import "package:build/build.dart";
|
||||||
import "package:dart_pubspec_licenses/dart_pubspec_licenses.dart";
|
import "package:dart_pubspec_licenses/dart_pubspec_licenses.dart";
|
||||||
import "package:yaml/yaml.dart";
|
import "package:yaml/yaml.dart";
|
||||||
|
29
lib/version.dart
Normal file
29
lib/version.dart
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
import "dart:io";
|
||||||
|
import "package:build/build.dart";
|
||||||
|
import "package:yaml/yaml.dart";
|
||||||
|
|
||||||
|
class VersionBuilder implements Builder {
|
||||||
|
@override
|
||||||
|
Future build(BuildStep step) async {
|
||||||
|
final pubspecFile = loadYaml(
|
||||||
|
await File('pubspec.yaml').readAsString(),
|
||||||
|
);
|
||||||
|
|
||||||
|
String fileContent = '''
|
||||||
|
//// AUTO-GENERATED by build_runner ////
|
||||||
|
/// DO NOT EDIT BY HAND
|
||||||
|
part of "version.dart";
|
||||||
|
|
||||||
|
const pubspecVersionString = '${pubspecFile["version"]}';
|
||||||
|
''';
|
||||||
|
|
||||||
|
await step.writeAsString(step.allowedOutputs.first, fileContent);
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
final buildExtensions = const {
|
||||||
|
"pubspec.yaml": [ "lib/shared/version.moxxy.dart" ]
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
Builder versionBuilder(BuilderOptions _) => VersionBuilder();
|
@ -1,6 +1,6 @@
|
|||||||
name: moxxyv2_builders
|
name: moxxyv2_builders
|
||||||
description: A colection of builders for Moxxyv2
|
description: A colection of builders for Moxxyv2
|
||||||
version: 0.1.0
|
version: 0.2.0
|
||||||
homepage: https://codeberg.org/moxxy/moxxyv2_builders
|
homepage: https://codeberg.org/moxxy/moxxyv2_builders
|
||||||
publish_to: https://git.polynom.me/api/packages/Moxxy/pub
|
publish_to: https://git.polynom.me/api/packages/Moxxy/pub
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user