Skip to content

Latest commit

 

History

History
37 lines (23 loc) · 1.25 KB

development-environment.md

File metadata and controls

37 lines (23 loc) · 1.25 KB

Development environment

The Sass language server, like the Sass compiler, is written in Dart. The language extension for Visual Studio Code is written in TypeScript. Tests for the extension are written in JavaScript.

If you have a background writing JavaScript or TypeScript, Learning Dart as a JavaScript developer is a great place to start.

Required software

To work on the language server:

To work on the language extension, or test your changes in Visual Studio Code:

Recommended software

Install dependencies

The repo is organised as a workspace. To install dependencies across packages, run this at the root level:

dart pub get

The language extension is not part of the Dart workspace. Install its dependencies separately.

cd extension
npm clean-install