From 3ea6d8c6b9d564e6c8200f859f629f852c26d434 Mon Sep 17 00:00:00 2001 From: Shub Date: Mon, 31 Jan 2022 22:45:19 +0530 Subject: [PATCH] 0.5.0 --- package.json | 2 +- src/constants.ts | 12 +++++++++++- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 0723840..0edf9b8 100644 --- a/package.json +++ b/package.json @@ -13,7 +13,7 @@ "intellisense" ], "description": "Intellisense support for CSS Variables", - "version": "0.4.0", + "version": "0.5.0", "publisher": "phoenisx", "license": "MIT", "homepage": "https://github.com/willofindie/vscode-cssvar", diff --git a/src/constants.ts b/src/constants.ts index 4ef9b00..2a744b0 100644 --- a/src/constants.ts +++ b/src/constants.ts @@ -6,7 +6,15 @@ export const JS_IDS = [ "javascript", "javascriptreact", ] as const; -export const CSS_IDS = ["css", "scss", "sass", "less", "postcss"] as const; +export const CSS_IDS = [ + "css", + "scss", + "sass", + "less", + "postcss", + "vue", + "svelte", +] as const; export const SUPPORTED_LANGUAGE_IDS = [...CSS_IDS, ...JS_IDS] as const; export type SupportedLanguageIds = typeof SUPPORTED_LANGUAGE_IDS[number]; @@ -16,6 +24,8 @@ export type SupportedExtensionNames = | "sass" | "less" | "postcss" + | "vue" + | "svelte" | "ts" | "tsx" | "jsx"