Releases: willofindie/vscode-cssvar
v2.2.1
v2.2.0
v2.1.0
- Backwards compatibility support for
cssvar.postcssSyntax
property insettings.json
Full Changelog: v2.0.0...v2.1.0
v2.0.0
Breaking changes:
In settings.json
, property cssvar.postcssSyntax
has been modified. It now accepts an object value instead of an array of strings.
E.g. It accepts a Map between Sytax parser module name and file extensions for which this parser will be used.
// .vscode/settings.json
{
"cssvar.postcssSyntax": {
// [npm package name]: ["file extension list to use this syntax parser for"]
"postcss-syntax": ["js", "jsx", "ts", "tsx"]
}
}
Details: Customization Doc
Features:
-
Adds support for parsing
js
/ts
template literals, which ultimately provides support for CSS variables used instyled-components
and libraries which uses template literals for CSS-in-JS. -
This extension now officially supports parsing
css
/scss
/less
/postcss
syntaxes, no external parsers are needed. The size of the generated bundle is still under200kB
. -
Adds support for all compatible PostCSS syntax parsers
-
Improved Documentation.
Full Changelog: v1.8.1...v2.0.0
v1.8.1
- Updated/Beautify Readme. 😉
Full Changelog: v1.8.0...v1.8.1
v1.8.0
v1.7.1
v1.7.0
v1.6.1
- Fix the README doc
Full Changelog: v1.6.0...v1.6.1