Skip to content
This repository was archived by the owner on Apr 4, 2023. It is now read-only.

Commit b26170e

Browse files
committed
0.18.3
- Pick up latest `typescript-template-language-service-decorator` with fix for TS 5.0 - Mark package as deprecated in favor of https://github.com/styled-components/typescript-styled-plugin.
1 parent ec8bef7 commit b26170e

File tree

4 files changed

+2631
-14
lines changed

4 files changed

+2631
-14
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 0.18.3 - April 4, 2023
4+
- Pick up latest `typescript-template-language-service-decorator` with fix for TS 5.0
5+
- Mark package as deprecated in favor of https://github.com/styled-components/typescript-styled-plugin.
6+
37
## 0.18.2 - December 06, 2021
48
- Include completion spans in responses. Thanks @jasonwilliams!
59
- Don't trigger completions when opening template tags. Thanks @jasonwilliams!

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ TypeScript server plugin that adds intellisense to [styled component](https://st
1515
- Quick fixes for misspelled property names.
1616

1717
## Usage
18-
This plugin requires TypeScript 2.4 or later. It can provide intellisense in both JavaScript and TypeScript files within any editor that uses TypeScript to power their language features. This includes [VS Code](https://code.visualstudio.com), [Sublime with the TypeScript plugin](https://github.com/Microsoft/TypeScript-Sublime-Plugin), [Atom with the TypeScript plugin](https://atom.io/packages/atom-typescript), [Visual Studio](https://www.visualstudio.com), and others.
18+
This plugin requires TypeScript 2.4 or later. It can provide intellisense in both JavaScript and TypeScript files within any editor that uses TypeScript to power their language features. This includes [VS Code](https://code.visualstudio.com), [Sublime with the TypeScript plugin](https://github.com/Microsoft/TypeScript-Sublime-Plugin), [Atom with the TypeScript plugin](https://atom.io/packages/atom-typescript), [Visual Studio](https://www.visualstudio.com), and others.
1919

2020
### With VS Code
21-
Just install the [VS Code Styled Components extension](https://github.com/styled-components/vscode-styled-components). This extension adds syntax highlighting and IntelliSense for styled components in JavaScript and TypeScript files.
21+
Just install the [VS Code Styled Components extension](https://github.com/styled-components/vscode-styled-components). This extension adds syntax highlighting and IntelliSense for styled components in JavaScript and TypeScript files.
2222

2323
If you are using a [workspace version of TypeScript]((https://code.visualstudio.com/Docs/languages/typescript#_using-newer-typescript-versions)) however, you must manually install the plugin along side the version of TypeScript in your workspace:
2424

@@ -198,7 +198,7 @@ To disable error reporting, set `"validate": false` in the plugin configuration:
198198
}
199199
```
200200

201-
You can also configure how errors are reported using linter settings.
201+
You can also configure how errors are reported using linter settings.
202202

203203
```json
204204
{
@@ -353,11 +353,11 @@ Selectors should not contain IDs because these rules are too tightly coupled wit
353353

354354
### Emmet in completion list
355355

356-
You can now see your Emmet abbreviations expanded and included in the completion list.
357-
An [upstream issue](https://github.com/Microsoft/TypeScript/issues/21999) with typescript blocks the Emmet entry in the completion list to get updated as you type.
356+
You can now see your Emmet abbreviations expanded and included in the completion list.
357+
An [upstream issue](https://github.com/Microsoft/TypeScript/issues/21999) with typescript blocks the Emmet entry in the completion list to get updated as you type.
358358
So for now you will have to press `Ctrl+Space` after typing out the abbreviation.
359359

360-
The below settings which are in sync with general Emmet settings in VS Code control the expanded Emmet abbreviations in the auto-completion list.
360+
The below settings which are in sync with general Emmet settings in VS Code control the expanded Emmet abbreviations in the auto-completion list.
361361

362362
#### showExpandedAbbreviation
363363
```

0 commit comments

Comments
 (0)