Skip to content

Commit cb5f91d

Browse files
authored
Merge pull request #21 from dummdidumm/docs-cleanup
docs cleanup
2 parents fe8362f + bdda3d8 commit cb5f91d

File tree

3 files changed

+3
-123
lines changed

3 files changed

+3
-123
lines changed

packages/language-server/README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,4 @@ Currently Supported:
4646

4747
Install a plugin for your editor:
4848

49-
- [VS Code](https://github.com/UnwrittenFun/svelte-vscode)
50-
- [Atom](https://github.com/UnwrittenFun/svelte-atom)
51-
- [(Neo)vim](https://github.com/coc-extensions/coc-svelte)
49+
- [VS Code](../svelte-vscode)

packages/svelte-vscode/CHANGELOG.md

Lines changed: 1 addition & 119 deletions
Original file line numberDiff line numberDiff line change
@@ -1,123 +1,5 @@
11
# Changelog
22

3-
## 0.9.3
4-
5-
- Update to [svelte-language-server](https://github.com/UnwrittenFun/svelte-language-server/releases/v0.10.3) 0.10.3
6-
- Don't trigger autocompletion in css when typing {
7-
- Debounce diagnostics requests to improve diagnostic performance
8-
- Document settings and preprocessor configuration
9-
10-
## 0.9.2
11-
12-
- Update to [svelte-language-server](https://github.com/UnwrittenFun/svelte-language-server/releases/v0.10.2) 0.10.2
13-
- Update to [prettier-plugin-svelte](https://github.com/UnwrittenFun/prettier-plugin-svelte/releases/tag/v0.7.0) 0.7.0
14-
- Added strict html mode with option `svelte-strict-mode`
15-
- Added support for await block shorthand
16-
- Now handles multiple script and style tags
17-
- HTML entities (e.g. &) will be kept as is in svelte > 3.4.3
18-
- New option `svelteBracketNewLine` to add a new line before closing `>` when wrapping attributes
19-
- Added support for all known svelte:\* elements
20-
- Added support for local modifier on transitions
21-
- Fixed if inside of each else blocks erroneously being converted to and else if block
22-
- Added sort order option to change order of script/style/markup available as `svelte-sort-order`
23-
- Fix some whitespace issues with inline tags
24-
25-
## 0.9.1
26-
27-
- Update to [svelte-language-server](https://github.com/UnwrittenFun/svelte-language-server/releases/v0.10.1) 0.10.1
28-
- Update to [prettier-plugin-svelte](https://github.com/UnwrittenFun/prettier-plugin-svelte/releases/tag/v0.5.1) 0.5.1
29-
- Better attribute wrapping
30-
- No longer opens output panel on error
31-
32-
## 0.9.0
33-
34-
- Update to [svelte-language-server](https://github.com/UnwrittenFun/svelte-language-server/tree/v0.10.0) 0.10.0
35-
- Adds suggestion diagnostics for typescript/javascript
36-
- Add code actions to typescript/javascript
37-
- Add go to definition support for typescript/javascript
38-
- Fix emmet completions showing up inconsistently
39-
- Update to [prettier-plugin-svelte](https://github.com/UnwrittenFun/prettier-plugin-svelte/releases/tag/v0.5.0) 0.5.0
40-
- Adds better whitespace support
41-
- Adds support for all utf8 characters in styles and scripts
42-
- Support event modifiers
43-
- Support let and class bindings
44-
- .html files are no longer associated to this plugin by default
45-
46-
## 0.8.0
47-
48-
- Update to [svelte-language-server](https://github.com/UnwrittenFun/svelte-language-server/tree/v0.8.0) 0.8.0
49-
- No longer applies semantic validation to JavaScript blocks (only syntactic).
50-
- Add autocompletions to js/ts
51-
- Formatting is now provided by [prettier-plugin-svelte](https://github.com/UnwrittenFun/prettier-plugin-svelte)
52-
which gives much improved support for svelte specific syntax and fixes a number of issues with the previous setup
53-
54-
## 0.7.1
55-
56-
- Update to [svelte-language-server](https://github.com/UnwrittenFun/svelte-language-server/tree/v0.7.1) 0.7.1
57-
- Fix for breaking changes in svelte v3
58-
59-
## 0.7.0
60-
61-
- Support for Svelte v3
62-
- Update to [svelte-language-server](https://github.com/UnwrittenFun/svelte-language-server/tree/v0.7.0) 0.7.0
63-
- Svelte is now loaded from your project when possible
64-
- Updates to various packages
65-
66-
## 0.6.1
67-
68-
- Update to [svelte-language-server](https://github.com/UnwrittenFun/svelte-language-server/tree/v0.6.1) 0.6.1
69-
- Includes some minor bug fixes
70-
71-
## 0.6.0
72-
73-
- Update to [svelte-language-server](https://github.com/UnwrittenFun/svelte-language-server/tree/v0.6.0) 0.6.0
74-
- Add symbols in the outline panel for css, html, and typescript
75-
- Add html formatting
76-
- Add color information and color picker to css
77-
- Add support for lang attribute on style and script tags
78-
793
## 0.5.0
804

81-
- Update to [svelte-language-server](https://github.com/UnwrittenFun/svelte-language-server/tree/v0.5.0) 0.5.0
82-
- Add config options for all features provided by the language server
83-
84-
## 0.4.2
85-
86-
- Add command to restart language server (useful if it errors or is using stale data)
87-
- Access it using `Cmd-Shift-P` or `Ctrl-Shift-P` and typing "restart language server"
88-
89-
## 0.4.1
90-
91-
- Update to [svelte-language-server](https://github.com/UnwrittenFun/svelte-language-server/tree/v0.4.2) 0.4.2
92-
- Has better support for typescript in workspaces
93-
- Now actually bundles the lib.d.ts files from typescript.. 🤦
94-
95-
## 0.4.0
96-
97-
- Update to [svelte-language-server](https://github.com/UnwrittenFun/svelte-language-server/tree/v0.4.0) 0.4.0
98-
- Includes fix to prevent attempting to load svelte config from package.json
99-
- Switching language type (.e.g from `type=text/javascript` to `type=text/typescript`) no longer crashes the server
100-
101-
## 0.3.2
102-
103-
- Allow space after key in each block ([#12](https://github.com/UnwrittenFun/svelte-vscode/issues/12))
104-
105-
## 0.3.1
106-
107-
- Register .svelte extension ([#8](https://github.com/UnwrittenFun/svelte-vscode/pull/8))
108-
- Fix highlighting error when using object destructuring in each blocks ([#11](https://github.com/UnwrittenFun/svelte-vscode/issues/11))
109-
- Use correct comments in typescript and scss blocks
110-
111-
## 0.3.0
112-
113-
- Add html tag autoclosing ([#4](https://github.com/UnwrittenFun/svelte-vscode/pull/4))
114-
- Fix incorrect comments being used for css and html ([#3](https://github.com/UnwrittenFun/svelte-vscode/issues/3))
115-
116-
## 0.2.0
117-
118-
- Update to [svelte-language-server](https://github.com/UnwrittenFun/svelte-language-server/tree/v0.2.0) 0.2.0
119-
- Emmet abbreviations support for HTML and CSS ([#2](https://github.com/UnwrittenFun/svelte-vscode/issues/2))
120-
121-
## 0.1.0
122-
123-
- Initial release
5+
- Initial release. Built from [UnwrittenFun/svelte-vscode](https://github.com/UnwrittenFun/svelte-vscode) to become the official VS Code language service for the language.

packages/svelte-vscode/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Svelte for VS Code
22

3-
Provides syntax highlighting and rich intellisense for Svelte components in VS Code, utilising the [svelte language server](https://github.com/UnwrittenFun/svelte-language-server).
3+
Provides syntax highlighting and rich intellisense for Svelte components in VS Code, utilising the [svelte language server](../language-server).
44

55
## Features
66

0 commit comments

Comments
 (0)