Merged in feature/update_node_and_yarn (pull request #409)

update node and yarn
This commit is contained in:
Eduard Heimbuch
2020-02-21 12:34:59 +00:00
2 changed files with 6 additions and 6 deletions

View File

@@ -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>

View File

@@ -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]) {