Skip to content

Commit

Permalink
Release v3.10.3
Browse files Browse the repository at this point in the history
  • Loading branch information
matthew-dean committed Aug 23, 2019
1 parent 91fd4c3 commit 66a839d
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
3 changes: 2 additions & 1 deletion bin/lessc
Expand Up @@ -4675,6 +4675,7 @@ function (_Node) {
_this._fileInfo = currentFileInfo;
_this.variableRegex = /@\{([\w-]+)\}/g;
_this.propRegex = /\$\{([\w-]+)\}/g;
_this.allowRoot = escaped;
return _this;
}

Expand Down Expand Up @@ -12135,7 +12136,7 @@ var number$1 = {

var string = {
e: function e(str) {
return new Anonymous(str instanceof JavaScript ? str.evaluated : str.value);
return new Quoted('"', str instanceof JavaScript ? str.evaluated : str.value, true);
},
escape: function escape(str) {
return new Anonymous(encodeURI(str.value).replace(/=/g, '%3D').replace(/:/g, '%3A').replace(/#/g, '%23').replace(/;/g, '%3B').replace(/\(/g, '%28').replace(/\)/g, '%29'));
Expand Down
3 changes: 2 additions & 1 deletion dist/less.cjs.js
Expand Up @@ -4671,6 +4671,7 @@ function (_Node) {
_this._fileInfo = currentFileInfo;
_this.variableRegex = /@\{([\w-]+)\}/g;
_this.propRegex = /\$\{([\w-]+)\}/g;
_this.allowRoot = escaped;
return _this;
}

Expand Down Expand Up @@ -12131,7 +12132,7 @@ var number$1 = {

var string = {
e: function e(str) {
return new Anonymous(str instanceof JavaScript ? str.evaluated : str.value);
return new Quoted('"', str instanceof JavaScript ? str.evaluated : str.value, true);
},
escape: function escape(str) {
return new Anonymous(encodeURI(str.value).replace(/=/g, '%3D').replace(/:/g, '%3A').replace(/#/g, '%23').replace(/;/g, '%3B').replace(/\(/g, '%28').replace(/\)/g, '%29'));
Expand Down
3 changes: 2 additions & 1 deletion dist/less.js
Expand Up @@ -4640,6 +4640,7 @@
_this._fileInfo = currentFileInfo;
_this.variableRegex = /@\{([\w-]+)\}/g;
_this.propRegex = /\$\{([\w-]+)\}/g;
_this.allowRoot = escaped;
return _this;
}

Expand Down Expand Up @@ -12299,7 +12300,7 @@

var string = {
e: function e(str) {
return new Anonymous(str instanceof JavaScript ? str.evaluated : str.value);
return new Quoted('"', str instanceof JavaScript ? str.evaluated : str.value, true);
},
escape: function escape(str) {
return new Anonymous(encodeURI(str.value).replace(/=/g, '%3D').replace(/:/g, '%3A').replace(/#/g, '%23').replace(/;/g, '%3B').replace(/\(/g, '%28').replace(/\)/g, '%29'));
Expand Down
2 changes: 1 addition & 1 deletion dist/less.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/less.min.js.map

Large diffs are not rendered by default.

0 comments on commit 66a839d

Please sign in to comment.