Skip to content
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

updated language server #810

Merged
merged 4 commits into from
Sep 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,8 @@ The process described here has several goals:
- Engage the community in working toward the best possible Playground UX
- Enable a sustainable system for the Playground's maintainers to review contributions

PRs should be created against the `staging` branch, which is currently the default branch of the repo.

Please follow the [styleguides](#styleguides) to have your contribution considered by the maintainers.
Reviewer(s) may ask you to complete additional design work, tests, or other changes before your pull request can be ultimately accepted.

Expand Down
14 changes: 7 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"@hotjar/browser": "^1.0.6",
"@ibm/plex": "^6.1.1",
"@mdx-js/react": "^2.3.0",
"@onflow/cadence-language-server": "1.0.0-preview.35",
"@onflow/cadence-language-server": "1.0.0-preview.39",
"@reach/router": "^1.3.4",
"@sentry/integrations": "^7.44.0",
"@sentry/react": "^7.44.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,7 @@ export const SingleError = styled.div<ThemedComponentProps>`
}
&.hint-warning {
background-color: ${({ theme }) => theme.colors.warning};
color: ${({ theme }) => theme.colors.warningText};
}

&.hint-info {
Expand Down
1 change: 1 addition & 0 deletions src/theme.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ export default {
errors: '#FC4723',
errorBackground: '#ee431e',
warning: '#ffcc00',
warningText: '#2f353f',
info: '#55EE1E26',
infoBackground: '#55EE1E',
error: '#f44336',
Expand Down
Loading