-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
14 changed files
with
377 additions
and
829 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/** | ||
* Less - Leaner CSS v3.12.0 | ||
* Less - Leaner CSS v3.12.2 | ||
* http://lesscss.org | ||
* | ||
* Copyright (c) 2009-2020, Alexis Sellier <[email protected]> | ||
|
@@ -10594,7 +10594,7 @@ | |
* It's not clear what should / must be public and why. | ||
*/ | ||
var initial = { | ||
version: [3, 12, 0], | ||
version: [3, 12, 2], | ||
data: data, | ||
tree: tree, | ||
Environment: environment, | ||
|
@@ -10641,6 +10641,14 @@ | |
} | ||
} | ||
} | ||
/** | ||
* Some of the functions assume a `this` context of the API object, | ||
* which causes it to fail when wrapped for ES6 imports. | ||
* | ||
* An assumed `this` should be removed in the future. | ||
*/ | ||
initial.parse = initial.parse.bind(api); | ||
initial.render = initial.render.bind(api); | ||
return api; | ||
}); | ||
|
||
|
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,5 +3,5 @@ | |
"packages/*" | ||
], | ||
"npmClient": "npm", | ||
"version": "3.12.0" | ||
"version": "3.12.1" | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/** | ||
* Less - Leaner CSS v3.12.0 | ||
* Less - Leaner CSS v3.12.2 | ||
* http://lesscss.org | ||
* | ||
* Copyright (c) 2009-2020, Alexis Sellier <[email protected]> | ||
|
@@ -10594,7 +10594,7 @@ | |
* It's not clear what should / must be public and why. | ||
*/ | ||
var initial = { | ||
version: [3, 12, 0], | ||
version: [3, 12, 2], | ||
data: data, | ||
tree: tree, | ||
Environment: environment, | ||
|
@@ -10641,6 +10641,14 @@ | |
} | ||
} | ||
} | ||
/** | ||
* Some of the functions assume a `this` context of the API object, | ||
* which causes it to fail when wrapped for ES6 imports. | ||
* | ||
* An assumed `this` should be removed in the future. | ||
*/ | ||
initial.parse = initial.parse.bind(api); | ||
initial.render = initial.render.bind(api); | ||
return api; | ||
}); | ||
|
||
|
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.