-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
New LSP #12
New LSP #12
Conversation
src/languageclient.ts
Outdated
const traceOutputChannel = window.createOutputChannel('Pact Language Server trace'); | ||
// eslint-disable-next-line prefer-const | ||
let { versionInfo, isInstalled } = await getPactInstallationInfo({ nightly: true }); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not sure if we should default to nightly builds. I think most devs would prefer the latest stable version
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The new LSP is not available in the stable version pact4x and the plan is to use development builds of pact5 until it is released and then we can switch
Do you mind splitting this in separate PR's by concern? formatting, update dependencies, .. |
Changes