gulp-community / gulp-less

A LESS plugin for Gulp
559 stars 116 forks source link

Support the "strictMath" option #279

Closed dsine-de closed 6 years ago

dsine-de commented 6 years ago

Add support for the strict math option (http://lesscss.org/usage/#command-line-usage-strict-math), e.g.:

...
.pipe(less({strictMath: 'on'})
...

Sometimes the automatic internal calculation of LESS come in your way.

stephenlacy commented 6 years ago

All options are passed directly to less, this plugin does not give extra support for more options. https://github.com/stevelacy/gulp-less/blob/master/index.js#L37

dsine-de commented 6 years ago

Ah, thanks! I'll try to find out why this option is not working then.