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.
Files changed (2) hide show
  1. package/lib/utils.js +1 -1
  2. 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
- const less = '';
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();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jizy-packer",
3
- "version": "2.1.6",
3
+ "version": "2.1.7",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "lib/*.js"