Skip to content

Commit

Permalink
bump minimum node version to 18, following server update (#172)
Browse files Browse the repository at this point in the history
  • Loading branch information
rchl authored Nov 17, 2023
1 parent 4cba034 commit 8a4b1d3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ class LspJSONPlugin(NpmClientHandler, StoreListener):
_schema_store = SchemaStore()

@classmethod
def minimum_node_version(cls) -> Tuple[int, int, int]:
return (14, 0, 0)
def required_node_version(cls) -> str:
return '>=18'

@classmethod
def cleanup(cls) -> None:
Expand Down

0 comments on commit 8a4b1d3

Please sign in to comment.