Skip to content

Commit

Permalink
Allow Node.js v19 for local development (#645)
Browse files Browse the repository at this point in the history
  • Loading branch information
ejizba authored Nov 2, 2022
1 parent e465719 commit a090cc0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/nodejsWorker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const logPrefix = 'LanguageWorkerConsoleLog';
const errorPrefix = logPrefix + '[error] ';
const warnPrefix = logPrefix + '[warn] ';
const supportedVersions: string[] = ['v14', 'v16', 'v18'];
const devOnlyVersions: string[] = ['v15', 'v17'];
const devOnlyVersions: string[] = ['v15', 'v17', 'v19'];
let worker;

// Try validating node version
Expand Down

0 comments on commit a090cc0

Please sign in to comment.