update to angular 12

This commit is contained in:
Matt Hill
2021-08-10 18:53:39 -06:00
committed by Aiden McClelland
parent 58678522ff
commit 1fe9c6ffdf
19 changed files with 12735 additions and 10234 deletions

View File

@@ -12,7 +12,10 @@ export class Emver {
}
compare (lhs: string, rhs: string): number {
return this.e.compare(lhs, rhs)
console.log('EMVER', this.e)
const compare = this.e.compare(lhs, rhs)
console.log('COMPARE', compare)
return compare
}
satisfies (version: string, range: string): boolean {