Skip to content

Commit

Permalink
0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
phoenisx committed Jan 31, 2022
1 parent d2358c2 commit 3ea6d8c
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
12 changes: 11 additions & 1 deletion src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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];

Expand All @@ -16,6 +24,8 @@ export type SupportedExtensionNames =
| "sass"
| "less"
| "postcss"
| "vue"
| "svelte"
| "ts"
| "tsx"
| "jsx"
Expand Down

0 comments on commit 3ea6d8c

Please sign in to comment.