Skip to content

Commit 7bdd118

Browse files
committed
Pick up new decorator lib to fix TS 2.6 auto import completions
Fixes microsoft#24
1 parent fe83f06 commit 7bdd118

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
# 0.2.2 - November 29, 2017
4+
- Fix auto import completions not showing up when using plugin with TS 2.6.2+
5+
36
# 0.2.1 - November 27, 2017
47
- Fix cases where placeholder is followed by a trailing semicolon. Thanks @kingdaro!
58

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "typescript-styled-plugin",
3-
"version": "0.2.1",
3+
"version": "0.2.2",
44
"description": "TypeScript language service plugin that adds IntelliSense for styled components",
55
"keywords": [
66
"TypeScript",
@@ -20,7 +20,7 @@
2020
"url": "https://github.com/Microsoft/typescript-styled-plugin/issues"
2121
},
2222
"dependencies": {
23-
"typescript-template-language-service-decorator": "^1.0.1",
23+
"typescript-template-language-service-decorator": "^1.0.3",
2424
"vscode-css-languageservice": "^2.1.10",
2525
"vscode-languageserver-types": "^3.4.0"
2626
},
@@ -33,7 +33,7 @@
3333
"glob": "^7.1.2",
3434
"mocha": "^3.5.3",
3535
"tslint": "^5.3.2",
36-
"typescript": "^2.5.3"
36+
"typescript": "^2.6.2"
3737
},
3838
"peerDependencies": {
3939
"typescript": "^2.3.0"

0 commit comments

Comments
 (0)