Skip to content
This repository has been archived by the owner on Sep 18, 2023. It is now read-only.

Commit

Permalink
fix: upgraded default nodejs version to 16.18.1, to prevent error dur…
Browse files Browse the repository at this point in the history
…ing peerDependency reading
  • Loading branch information
wglanzer committed Dec 13, 2022
1 parent edb3e1f commit b670b12
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
import java.nio.file.*;
import java.util.List;
import java.util.concurrent.*;
import java.util.logging.*;
import java.util.logging.Logger;

/**
* @author w.glanzer, 10.05.2021
Expand All @@ -29,7 +29,7 @@
public class NodeJSInstaller implements Runnable
{

public static final String DEFAULT_VERSION = "v16.1.0";
public static final String DEFAULT_VERSION = "v16.18.1";

private static final String _INSTALLER_INTEGRITYCHECK_FILE = ".installer_integrity";
private static final Logger _LOGGER = Logger.getLogger(NodeJSInstaller.class.getName());
Expand Down

0 comments on commit b670b12

Please sign in to comment.