fix(version): take all of version string after patch version

This commit is contained in:
Alex Rickabaugh 2016-11-30 14:25:11 -08:00
parent e628b66cca
commit f275f36081
1 changed files with 1 additions and 1 deletions

View File

@ -18,5 +18,5 @@ export class Version {
get minor(): string { return this.full.split('.')[1]; }
get patch(): string { return this.full.split('.')[2]; }
get patch(): string { return this.full.split('.').slice(2).join('.'); }
}