You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.4 KiB
42 lines
1.4 KiB
part of 'grind.dart';
|
|
|
|
@Task('add minor version number')
|
|
void addVersion() async {
|
|
String projectPath = Directory('.').absolute.path;
|
|
String yamlPath = join(projectPath, 'pubspec.yaml');
|
|
String yamlContent = await File(yamlPath).readAsString();
|
|
dynamic content = loadYaml(yamlContent);
|
|
String version = content['version'];
|
|
//rename version
|
|
|
|
Version resultVersion = VersionTool.fromText(version).nextMinorTag('dev');
|
|
|
|
String result = yamlContent.replaceFirst(version, resultVersion.toString());
|
|
await File(yamlPath).writeAsString(result);
|
|
}
|
|
|
|
@Task('add path version number')
|
|
void addVersionMajor() async {
|
|
String projectPath = Directory('.').absolute.path;
|
|
String yamlPath = join(projectPath, 'pubspec.yaml');
|
|
String yamlContent = await File(yamlPath).readAsString();
|
|
dynamic content = loadYaml(yamlContent);
|
|
String version = content['version'];
|
|
//rename version
|
|
|
|
Version resultVersion = VersionTool.fromText(version).nextMajorTag('dev');
|
|
|
|
String result = yamlContent.replaceFirst(version, resultVersion.toString());
|
|
await File(yamlPath).writeAsString(result);
|
|
}
|
|
|
|
@Task()
|
|
Future<String> getVersion() async {
|
|
String projectPath = Directory('.').absolute.path;
|
|
String yamlPath = join(projectPath, 'pubspec.yaml');
|
|
String yamlContent = await File(yamlPath).readAsString();
|
|
dynamic content = loadYaml(yamlContent);
|
|
String version = content['version'];
|
|
return version;
|
|
}
|