From 8742fe70ca3c6a633a2cef2bd32873703e4a8867 Mon Sep 17 00:00:00 2001 From: Daniel Thielman Date: Wed, 29 Jul 2015 06:52:46 -0400 Subject: [PATCH] Disambiguate Query Parameter Docs There are certain options on `lessc` which don't precisely map to the implied syntax in the docs (e.g. `lessc --modifyVar="myVar=myVal"` actually maps to `style!css!less?{"modifyVars":{"myVar":"myVal"}}`). This update clarifies the documentation. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8b15dfed..bd086453 100644 --- a/README.md +++ b/README.md @@ -51,7 +51,7 @@ module.exports = { }; ``` -See the [LESS documentation](http://lesscss.org/usage/#command-line-usage-options) for all available options. LESS translates dash-case to camelCase. +See the [LESS documentation](http://lesscss.org/usage/#command-line-usage-options) for all available options. LESS translates dash-case to camelCase. Certain options which take values (e.g. `lessc --modify-var="a=b"`) are better handled with the [JSON loader syntax](http://webpack.github.io/docs/using-loaders.html#query-parameters) (`style!css!less?{"modifyVars":{"a":"b"}}`). ### LESS plugins