-
Notifications
You must be signed in to change notification settings - Fork 6
Fix LSP dependency #104
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
Fix LSP dependency #104
Conversation
Codecov Report
@@ Coverage Diff @@
## develop #104 +/- ##
========================================
Coverage 94.62% 94.62%
========================================
Files 43 43
Lines 1283 1283
Branches 282 283 +1
========================================
Hits 1214 1214
Misses 67 67
Partials 2 2
Flags with carried forward coverage won't be shown. Click here to find out more. Continue to review full report at Codecov.
|
| "resolutions": { | ||
| "**/vscode-languageserver-protocol": "3.15.3" | ||
| }, |
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.
Yarn will not automatically hoist the pinned version of a dependency of a dependency, even when it is in the accepted range for resolution. This field overrides yarn's default behavior.
|
LGTM |
|
Do we need to publish this? |
|
Probably, but there's no version bump in this PR. My intention was to unblock development, and this is a start. |
* model WHERE clause (#68) * Remote SOQL Errors - Language Server Part (#93) * remove code builder (#92) * Move from antlr4JS to antlr4TS (#96) * SOQL code completion for SELECT fields (#99) * publish language server 0.2.9 (#102) * Fix LSP dependency (#104) * Disabled 'Running...' button while query running (#106) * Add basic code-completion for ORDER BY and other improvements (#107) * Dehru and JG telemetry - Send GDPR clean data to telemetry when errors/unsupported syntax present (#110) * Disable WHERE in model (#113) * Bump versions for publishing (#114) * Code-completion for WHERE clause expressions (#112) Co-authored-by: Jonathan Gellin <jgellin@salesforce.com> Co-authored-by: jgellin-sf <55159130+jgellin-sf@users.noreply.github.com> Co-authored-by: Chase McCarthy <charles.mccarthy@heroku.com> Co-authored-by: Jonny Hork <jhork@salesforce.com> Co-authored-by: Fernando Dobladez <fernandodobladez@salesforce.com> Co-authored-by: Jonathan Gellin <jgellin@salesforce.com>
What does this PR do?
VSCode has made some dodgy version changes with their latest updates that have broken our build. This PR pins us to a specific version of a dependency to work around the problem.
What issues does this PR fix or reference?
@W-8582993@