From 545ff2ec32f8cd654f7676fe1c7052700dbbd3af Mon Sep 17 00:00:00 2001 From: RMidhunSuresh Date: Sun, 3 Apr 2022 16:46:26 +0530 Subject: [PATCH] Add explaining comment --- scripts/postcss/css-url-to-variables.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/postcss/css-url-to-variables.js b/scripts/postcss/css-url-to-variables.js index 6c58b093..7e9f5759 100644 --- a/scripts/postcss/css-url-to-variables.js +++ b/scripts/postcss/css-url-to-variables.js @@ -17,8 +17,8 @@ limitations under the License. const valueParser = require("postcss-value-parser"); /** - * This plugin extracts content inside url() into css variables. - * The extracted css variables are added to the :root section. + * This plugin extracts content inside url() into css variables and adds the variables to the root section. + * This plugin is used in conjunction with css-url-processor plugin to colorize svg icons. */ let counter; let urlVariables;