Skip to content

Latest commit

 

History

History
185 lines (136 loc) · 8.94 KB

File metadata and controls

185 lines (136 loc) · 8.94 KB

Contributing to Svelte Language Tools

Svelte Language Tools provides IDE support for Svelte files through the Language Server Protocol (LSP). It powers the VSCode extension and enables Svelte support in numerous other IDEs.

The Open Source Guides website has a collection of resources for individuals, communities, and companies. These resources help people who want to learn how to run and contribute to open source projects. Contributors and people new to open source alike will find the following guides especially useful:

Get involved

There are many ways to contribute to Svelte Language Tools, and many of them do not involve writing any code. Here's a few ideas to get started:

  • Simply start using Svelte Language Tools in your IDE. Does everything work as expected? If not, we're always looking for improvements. Let us know by opening an issue.
  • Look through the open issues. A good starting point would be issues tagged good first issue. Provide workarounds, ask for clarification, or suggest labels. Help triage issues.
  • If you find an issue you would like to fix, open a pull request.
  • Read through our documentation. If you find anything that is confusing or can be improved, you can make edits by opening a pull request.
  • Take a look at the features requested by others in the community and consider opening a pull request if you see something you want to work on.

Contributions are very welcome. If you think you need help planning your contribution, please reach out to us on Discord and let us know you are looking for a bit of help.

Development

This is a monorepo managed with pnpm workspaces. Install pnpm globally with:

npm i -g pnpm

Clone the repository and install dependencies:

git clone git@github.com:sveltejs/language-tools.git
cd language-tools
pnpm install
pnpm bootstrap

Building

To build all packages:

pnpm build

To watch for changes:

pnpm watch

Code structure

Packages

Key entry points

  • packages/language-server/src/server.ts - Language server entry point
  • packages/language-server/src/plugins/ - Language service plugins (TypeScript, Svelte, CSS, HTML)
  • packages/svelte2tsx/src/svelte2tsx/index.ts - Svelte to TSX transformation
  • packages/svelte-vscode/src/extension.ts - VSCode extension entry point

High Level Overview

flowchart LR
    %% IDEs
    VSC[IDE: VSCode + Svelte for VS Code extension]
    click VSC "https://github.com/sveltejs/language-tools/tree/master/packages/svelte-vscode" "Svelte for VSCode extension"
    %% Tools
    CLI[CLI: svelte-check]
    click CLI "https://github.com/sveltejs/language-tools/tree/master/packages/svelte-check" "A command line tool to get diagnostics for Svelte code"
    %% Svelte - Extensions
    VSC_TSSP[typescript-svelte-plugin]
    click VSC_TSSP "https://github.com/sveltejs/language-tools/tree/master/packages/typescript-plugin" "A TypeScript plugin for Svelte intellisense"
    %% Svelte - Packages
    SVELTE_LANGUAGE_SERVER["svelte-language-server"]
    SVELTE_COMPILER_SERVICE["svelte2tsx"]
    TS_SERVICE["TS/JS intellisense using TypeScript language service"]
    SVELTE_SERVICE["Svelte intellisense using Svelte compiler"]
    click SVELTE_LANGUAGE_SERVER "https://github.com/sveltejs/language-tools/tree/master/packages/language-server" "A language server adhering to the LSP"
    click SVELTE_COMPILER_SERVICE "https://github.com/sveltejs/language-tools/tree/master/packages/language-server/src/plugins/svelte" "Transforms Svelte code into JSX/TSX code"
    click TS_SERVICE "https://github.com/sveltejs/language-tools/tree/master/packages/language-server/src/plugins/typescript"
    click SVELTE_SERVICE "https://github.com/sveltejs/language-tools/tree/master/packages/language-server/src/plugins/svelte"
    %% External Packages
    HTML_SERVICE[HTML intellisense using vscode-html-languageservice]
    CSS_SERVICE[CSS intellisense using vscode-css-languageservice]
    VSC_TS[vscode-typescript-language-features]
    click HTML_SERVICE "https://github.com/microsoft/vscode-html-languageservice"
    click CSS_SERVICE "https://github.com/microsoft/vscode-css-languageservice"
    click VSC_TS "https://github.com/microsoft/vscode/tree/main/extensions/typescript-language-features"
    subgraph EMBEDDED_SERVICES[Embedded Language Services]
      direction LR
      TS_SERVICE
      SVELTE_SERVICE
      HTML_SERVICE
      CSS_SERVICE
    end
    VSC -- Language Server Protocol --> SVELTE_LANGUAGE_SERVER
    CLI -- Only using diagnostics feature --> SVELTE_LANGUAGE_SERVER
    VSC -- includes --> VSC_TS
    VSC_TS -- loads --> VSC_TSSP
    VSC_TSSP -- uses --> SVELTE_COMPILER_SERVICE
    TS_SERVICE -- uses --> SVELTE_COMPILER_SERVICE
    SVELTE_LANGUAGE_SERVER -- bundles --> EMBEDDED_SERVICES
Loading

More information about the internals can be found HERE.

Running tests

Run tests for all packages:

pnpm test

Run tests for a specific package:

cd packages/[package-name]
pnpm test

Testing in VSCode

To test your changes in VSCode:

  1. Open the repository in VSCode
  2. Go to the debug panel (Ctrl+Shift+D / Cmd+Shift+D)
  3. Select "Run VSCode Extension" from the dropdown
  4. Press F5 to launch a new VSCode instance with your changes

This launches a new VSCode window and a watcher for your changes. In this dev window you can choose an existing Svelte project to work against. When you make changes to svelte-vscode use the command "Reload Window" in the VSCode command palette to see your changes. When you make changes to language-server use the command "Svelte: Restart Language Server". When you make changes to svelte2tsx, you first need to run pnpm build within its folder, then restart the language server. When you make changes totypescript-plugin, you need to first run pnpm build within its folder and then use the command "TypeScript: Restart Server".

Testing in other editors

For other editors, you'll need to build the language server and configure your editor to use the local build. See the documentation for your specific editor.

Linking local changes

To test certain local changes in a Svelte project, you might want to use pnpm overrides in your project's package.json:

{
    "pnpm": {
        "overrides": {
            // Test changes to svelte-check:
            "svelte-check": "link:../path/to/language-tools/packages/svelte-check",
            // You only need this if you're testing the changes with an editor other than VS Code:
            "svelte-language-server": "link:../path/to/language-tools/packages/language-server"
        }
    }
}

Pull requests

Small pull requests are much easier to review and more likely to get merged. Make sure the PR does only one thing, otherwise please split it.

Please make sure the following is done when submitting a pull request:

  1. Fork the repository and create your branch from master.
  2. Describe your test plan in your pull request description. Make sure to test your changes.
  3. Make sure your code lints (pnpm lint).
  4. Make sure your tests pass (pnpm test).
  5. Make sure your code is properly formatted (pnpm format).

If you're only fixing a bug, it's fine to submit a pull request right away but we still recommend that you file an issue detailing what you're fixing. This is helpful in case we don't accept that specific fix but want to keep track of the issue.

All pull requests should be opened against the master branch.

License

By contributing to Svelte Language Tools, you agree that your contributions will be licensed under its MIT license.

Questions?

Join us in the Svelte Discord and post your question.