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