Skip to content

Commit

Permalink
fix: update node to 20.18.0 (#125)
Browse files Browse the repository at this point in the history
  • Loading branch information
rchl authored Oct 24, 2024
1 parent 4183513 commit f4a5ccb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions st3/lsp_utils/node_runtime.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@

IS_WINDOWS_7_OR_LOWER = sys.platform == 'win32' and sys.getwindowsversion()[:2] <= (6, 1) # type: ignore

NODE_RUNTIME_VERSION = '18.18.1'
NODE_RUNTIME_VERSION = '20.18.0'
NODE_DIST_URL = 'https://nodejs.org/dist/v{version}/{filename}'

ELECTRON_RUNTIME_VERSION = '27.0.0' # includes Node.js v18.17.1
ELECTRON_NODE_VERSION = '18.17.1'
ELECTRON_RUNTIME_VERSION = '33.0.0' # includes Node.js v20.18.0
ELECTRON_NODE_VERSION = '20.18.0'
ELECTRON_DIST_URL = 'https://github.com/electron/electron/releases/download/v{version}/{filename}'
YARN_URL = 'https://github.com/yarnpkg/yarn/releases/download/v1.22.21/yarn-1.22.21.js'
YARN_URL = 'https://github.com/yarnpkg/yarn/releases/download/v1.22.22/yarn-1.22.22.js'

NO_NODE_FOUND_MESSAGE = 'Could not start {package_name} due to not being able to resolve suitable Node.js \
runtime on the PATH. Press the "Download Node.js" button to get required Node.js version \
Expand Down

0 comments on commit f4a5ccb

Please sign in to comment.