Skip to content

Commit 47aa14f

Browse files
authored
Allow Node 18 in the host (#591)
1 parent 4ba4fa7 commit 47aa14f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/nodejsWorker.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
const logPrefix = 'LanguageWorkerConsoleLog';
55
const errorPrefix = logPrefix + '[error] ';
66
const warnPrefix = logPrefix + '[warn] ';
7-
const supportedVersions: string[] = ['v14', 'v16'];
8-
const devOnlyVersions: string[] = ['v15', 'v17', 'v18'];
7+
const supportedVersions: string[] = ['v14', 'v16', 'v18'];
8+
const devOnlyVersions: string[] = ['v15', 'v17'];
99
let worker;
1010

1111
// Try validating node version

0 commit comments

Comments
 (0)