update node and yarn

This commit is contained in:
Sebastian Sdorra
2020-02-19 14:30:52 +01:00
parent ef160198bf
commit b98e82c388
2 changed files with 6 additions and 6 deletions

View File

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

View File

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