diff --git a/CHANGELOG.md b/CHANGELOG.md index b31c942..dafe372 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,12 @@ # Release Notes +## 0.1.5 +Fix [#2](https://github.com/Arthie/vscode-tailwindcssinjs/issues/2): removed `` ` `` as trigger character + ## 0.1.4 Compatible with tailwindcss 1.7.x Updated to typescript-tailwindcssinjs-plugin 0.3.1 -Fix: Downgrading typescript back to 3.x.x fixes [#2](https://github.com/Arthie/vscode-tailwindcssinjs/issues/2) ## 0.1.3 diff --git a/package.json b/package.json index a52a6cd..8ed3bac 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "vscode-tailwindcssinjs", - "version": "0.1.4", + "version": "0.1.5", "publisher": "Arthie", "engines": { "vscode": "^1.44.0" @@ -53,7 +53,7 @@ "qna": "https://github.com/Arthie/vscode-tailwindcssinjs/issues", "dependencies": { "tailwindcss": "^1.7.6", - "typescript": "^3.9.7", + "typescript": "^4.0.2", "typescript-tailwindcssinjs-plugin": "^0.3.1" }, "devDependencies": { diff --git a/src/extension.ts b/src/extension.ts index 3c01406..ffe4b8e 100644 --- a/src/extension.ts +++ b/src/extension.ts @@ -74,10 +74,10 @@ export async function activate(context: vscode.ExtensionContext) { vscode.languages.registerCompletionItemProvider( SELECTORS, tailwindcssinjsCompletionProvider, - "`", " ", "[", - ":" + ":", + "\n" ) ); } diff --git a/vscode-tailwindcssinjs-0.1.5.vsix b/vscode-tailwindcssinjs-0.1.5.vsix new file mode 100644 index 0000000..dfd6990 Binary files /dev/null and b/vscode-tailwindcssinjs-0.1.5.vsix differ diff --git a/yarn.lock b/yarn.lock index e9e5e5a..fddd387 100644 --- a/yarn.lock +++ b/yarn.lock @@ -583,10 +583,10 @@ typescript-template-language-service-decorator@^2.2.0: resolved "https://registry.yarnpkg.com/typescript-template-language-service-decorator/-/typescript-template-language-service-decorator-2.2.0.tgz#4ee6d580f307fb9239978e69626f2775b8a59b2a" integrity sha512-xiolqt1i7e22rpqMaprPgSFVgU64u3b9n6EJlAaUYE61jumipKAdI1+O5khPlWslpTUj80YzjUKjJ2jxT0D74w== -typescript@^3.9.7: - version "3.9.7" - resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.9.7.tgz#98d600a5ebdc38f40cb277522f12dc800e9e25fa" - integrity sha512-BLbiRkiBzAwsjut4x/dsibSTB6yWpwT5qWmC2OfuCg3GgVQCSgMs4vEctYPhsaGtd0AeuuHMkjZ2h2WG8MSzRw== +typescript@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.0.2.tgz#7ea7c88777c723c681e33bf7988be5d008d05ac2" + integrity sha512-e4ERvRV2wb+rRZ/IQeb3jm2VxBsirQLpQhdxplZ2MEzGvDkkMmPglecnNDfSUBivMjP93vRbngYYDQqQ/78bcQ== uniq@^1.0.1: version "1.0.1"