From 4bd64b57e6dea4533a05441153f261218c30fd10 Mon Sep 17 00:00:00 2001 From: Shub Date: Sun, 5 Mar 2023 12:19:21 +0530 Subject: [PATCH] 2.6.0 --- CHANGELOG.md | 6 ++++++ package.json | 13 +++++++------ 2 files changed, 13 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a000d0e..8dab2af 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/package.json b/package.json index 247a5d1..3e8ce55 100644 --- a/package.json +++ b/package.json @@ -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", @@ -47,7 +47,6 @@ "onLanguage:stylus", "onLanguage:sugarss", "onLanguage:tailwindcss", - "onLanguage:django-html", "onLanguage:ejs", "onLanguage:gohtml", @@ -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" @@ -75,7 +72,9 @@ "properties": { "cssvar.files": { "type": "array", - "default": ["**/*.css"], + "default": [ + "**/*.css" + ], "items": { "type": "string" }, @@ -90,7 +89,9 @@ }, "cssvar.ignore": { "type": "array", - "default": ["**/node_modules/**"], + "default": [ + "**/node_modules/**" + ], "items": { "type": "string" },