Exports LESS CSS global variables into an ES6 javascript file.
Transforms:
@brand-primary: #428bca;
into:
export const brandPrimary = '#428bca';
npm install -g less-plugin-export-variables
and then on the command line,
lessc file.less --export-variables
Programmatic usage is not supported at this time.
Browser usage is not supported as this time.