mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-12 16:35:45 +01:00
update node and yarn
This commit is contained in:
6
pom.xml
6
pom.xml
@@ -456,7 +456,7 @@
|
||||
<plugin>
|
||||
<groupId>sonia.scm.maven</groupId>
|
||||
<artifactId>smp-maven-plugin</artifactId>
|
||||
<version>1.0.0-rc3</version>
|
||||
<version>1.0.0-rc4</version>
|
||||
</plugin>
|
||||
|
||||
<plugin>
|
||||
@@ -856,8 +856,8 @@
|
||||
<guava.version>26.0-jre</guava.version>
|
||||
|
||||
<!-- frontend -->
|
||||
<nodejs.version>10.16.0</nodejs.version>
|
||||
<yarn.version>1.16.0</yarn.version>
|
||||
<nodejs.version>12.16.1</nodejs.version>
|
||||
<yarn.version>1.22.0</yarn.version>
|
||||
|
||||
<!-- build properties -->
|
||||
<project.build.javaLevel>8</project.build.javaLevel>
|
||||
|
||||
@@ -15,7 +15,7 @@ export const byKey = (key: string) => {
|
||||
}
|
||||
|
||||
if (isUndefined(b, key)) {
|
||||
return 0;
|
||||
return -1;
|
||||
}
|
||||
|
||||
if (a[key] < b[key]) {
|
||||
@@ -35,7 +35,7 @@ export const byValueLength = (key: string) => {
|
||||
}
|
||||
|
||||
if (isUndefined(b, key)) {
|
||||
return 0;
|
||||
return -1;
|
||||
}
|
||||
|
||||
if (a[key].length < b[key].length) {
|
||||
@@ -55,7 +55,7 @@ export const byNestedKeys = (key: string, nestedKey: string) => {
|
||||
}
|
||||
|
||||
if (isUndefined(b, key, nestedKey)) {
|
||||
return 0;
|
||||
return -1;
|
||||
}
|
||||
|
||||
if (a[key][nestedKey] < b[key][nestedKey]) {
|
||||
|
||||
Reference in New Issue
Block a user