postcss-value-parser
may have it
postcss-scss
parser
$var: 1
as a $var
declaration with 1
color: $black
in SCSS, you will have { prop: 'color', value: '$black' }
decl.value
variables
option
-c
option sets directory to look for postcss config files with standard config names: https://github.com/michael-ciniawsky/postcss-load-config#usage
--use
option, not both
line-height: 0vw;
to the pages body for responsive fonts size, see for example seaneking/postcss-responsive-type#15 or twbs/rfs#14 . When I try to use it with cssnano the vw
is stripped, which makes sense for all other cases but this one. Is there a workaround for this case and/or should I open a ticket for this ? (I checked the project's tickets and doc and found nothing mentioning it, sorry if it's documented somewhere)