Skip to content

Commit

Permalink
2.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
phoenisx committed Mar 5, 2023
1 parent 64ab286 commit 4bd64b5
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [2.6.0](https://github.com/willofindie/vscode-cssvar/compare/v2.5.0...v2.6.0) - 2023-03-05
### Fixes
- [#97](https://github.com/willofindie/vscode-cssvar/issues/97) ignore incomplete node_module import paths
- tokencss config path not recognized


## [2.5.0](https://github.com/willofindie/vscode-cssvar/compare/v2.4.1...v2.5.0) - 2022-11-06
### Features
- [#72](https://github.com/willofindie/vscode-cssvar/issues/72) Enable all useful language ids to dynamically enable CSS Variable IntelliSense
Expand Down
13 changes: 7 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"typescript"
],
"description": "Intellisense support for CSS Variables",
"version": "2.5.0",
"version": "2.6.0",
"publisher": "phoenisx",
"license": "MIT",
"homepage": "https://github.com/willofindie/vscode-cssvar",
Expand All @@ -47,7 +47,6 @@
"onLanguage:stylus",
"onLanguage:sugarss",
"onLanguage:tailwindcss",

"onLanguage:django-html",
"onLanguage:ejs",
"onLanguage:gohtml",
Expand All @@ -56,13 +55,11 @@
"onLanguage:handlebars",
"onLanguage:html",
"onLanguage:jade",

"onLanguage:javascript",
"onLanguage:javascriptreact",
"onLanguage:typescript",
"onLanguage:typescriptreact",
"onLanguage:coffeescript",

"onLanguage:svelte",
"onLanguage:vue",
"onLanguage:astro"
Expand All @@ -75,7 +72,9 @@
"properties": {
"cssvar.files": {
"type": "array",
"default": ["**/*.css"],
"default": [
"**/*.css"
],
"items": {
"type": "string"
},
Expand All @@ -90,7 +89,9 @@
},
"cssvar.ignore": {
"type": "array",
"default": ["**/node_modules/**"],
"default": [
"**/node_modules/**"
],
"items": {
"type": "string"
},
Expand Down

0 comments on commit 4bd64b5

Please sign in to comment.