-
Notifications
You must be signed in to change notification settings - Fork 30.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add instruction to develop css-language-features
- Loading branch information
Showing
1 changed file
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# CSS Language Features | ||
|
||
This extension offers CSS/SCSS/Less support in VS Code. | ||
|
||
## Development | ||
|
||
- `yarn` | ||
- `yarn` at `/server` | ||
- Run the `Launch Extension` target | ||
- Run `Reload Window` command in the launched instance to reload the extension | ||
|
||
### Try vscode-css-languageservice | ||
|
||
[`vscode-css-languageservice`](https://github.com/Microsoft/vscode-css-languageservice) contains the language smarts for CSS/SCSS/Less. This extension only wraps the service into a Language Server for VS Code. | ||
|
||
If you want to fix CSS/SCSS/Less issues or make improvements, you can: | ||
|
||
- Clone `vscode-css-languageservice` and compile it | ||
- Run `npm link` in `vscode-css-languageservice` | ||
- In extension, run `npm link vscode-css-languageservice` in `/server` | ||
- Now when you run `Launch Extension`, the launched instance will use your version of `vscode-css-languageservice`. |
6745661
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.
How do you "Run the
Launch Extension
target"? I'm not sure I follow what I'm supposed to do here.6745661
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.
@connorshea

In the debug View in the sidebar. I'll clarify it a bit.