Skip to content

Commit 4bd64b5

Browse files
committed
2.6.0
1 parent 64ab286 commit 4bd64b5

File tree

2 files changed

+13
-6
lines changed

2 files changed

+13
-6
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [2.6.0](https://github.com/willofindie/vscode-cssvar/compare/v2.5.0...v2.6.0) - 2023-03-05
8+
### Fixes
9+
- [#97](https://github.com/willofindie/vscode-cssvar/issues/97) ignore incomplete node_module import paths
10+
- tokencss config path not recognized
11+
12+
713
## [2.5.0](https://github.com/willofindie/vscode-cssvar/compare/v2.4.1...v2.5.0) - 2022-11-06
814
### Features
915
- [#72](https://github.com/willofindie/vscode-cssvar/issues/72) Enable all useful language ids to dynamically enable CSS Variable IntelliSense

package.json

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"typescript"
2121
],
2222
"description": "Intellisense support for CSS Variables",
23-
"version": "2.5.0",
23+
"version": "2.6.0",
2424
"publisher": "phoenisx",
2525
"license": "MIT",
2626
"homepage": "https://github.com/willofindie/vscode-cssvar",
@@ -47,7 +47,6 @@
4747
"onLanguage:stylus",
4848
"onLanguage:sugarss",
4949
"onLanguage:tailwindcss",
50-
5150
"onLanguage:django-html",
5251
"onLanguage:ejs",
5352
"onLanguage:gohtml",
@@ -56,13 +55,11 @@
5655
"onLanguage:handlebars",
5756
"onLanguage:html",
5857
"onLanguage:jade",
59-
6058
"onLanguage:javascript",
6159
"onLanguage:javascriptreact",
6260
"onLanguage:typescript",
6361
"onLanguage:typescriptreact",
6462
"onLanguage:coffeescript",
65-
6663
"onLanguage:svelte",
6764
"onLanguage:vue",
6865
"onLanguage:astro"
@@ -75,7 +72,9 @@
7572
"properties": {
7673
"cssvar.files": {
7774
"type": "array",
78-
"default": ["**/*.css"],
75+
"default": [
76+
"**/*.css"
77+
],
7978
"items": {
8079
"type": "string"
8180
},
@@ -90,7 +89,9 @@
9089
},
9190
"cssvar.ignore": {
9291
"type": "array",
93-
"default": ["**/node_modules/**"],
92+
"default": [
93+
"**/node_modules/**"
94+
],
9495
"items": {
9596
"type": "string"
9697
},

0 commit comments

Comments
 (0)