jizy-packer 2.1.6 → 2.1.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/utils.js +1 -1
- package/package.json +1 -1
package/lib/utils.js
CHANGED
|
@@ -78,7 +78,7 @@ export function generateLessVariablesFromConfig(variablesPath, targetVariablesPa
|
|
|
78
78
|
const _variables = parseLessVariablesToObject(variablesPath);
|
|
79
79
|
variables = { ..._variables, ...variables };
|
|
80
80
|
|
|
81
|
-
|
|
81
|
+
let less = '';
|
|
82
82
|
Object.keys(variables).forEach(key => {
|
|
83
83
|
// replace camelcase to kebab-case for less variable names
|
|
84
84
|
const variableName = key.replace(/([a-z])([A-Z])/g, '$1-$2').toLowerCase();
|