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.
41 lines
1.4 KiB
41 lines
1.4 KiB
3 years ago
|
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 addVersionPatch() 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).nextPatchTag('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;
|
||
|
}
|