We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a5a0e52 commit f8f15abCopy full SHA for f8f15ab
flow-server/src/main/java/com/vaadin/flow/server/frontend/FrontendTools.java
@@ -17,6 +17,7 @@
17
18
import java.io.File;
19
import java.io.IOException;
20
+import java.io.Serializable;
21
import java.net.URI;
22
import java.nio.file.Path;
23
import java.nio.file.Paths;
@@ -182,7 +183,8 @@ String getScript() {
182
183
* npm version string (e.g., "11.3.0")
184
*/
185
private record ActiveNodeInstallation(String nodeExecutable,
- String nodeVersion, String npmCliScript, String npmVersion) {
186
+ String nodeVersion, String npmCliScript,
187
+ String npmVersion) implements Serializable {
188
ActiveNodeInstallation {
189
Objects.requireNonNull(nodeExecutable);
190
Objects.requireNonNull(nodeVersion);
0 commit comments