Skip to content

Commit

Permalink
Fixes #3434 - memory / runtime improvements (#3572)
Browse files Browse the repository at this point in the history
* Remove class extends pattern for nodes
* Fix node benchmark
* v3.13.0
* Restore tree caching
  • Loading branch information
matthew-dean committed Dec 12, 2020
1 parent 0e26859 commit 257efdd
Show file tree
Hide file tree
Showing 59 changed files with 8,771 additions and 14,459 deletions.
5,930 changes: 2,890 additions & 3,040 deletions dist/less.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions 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.

2 changes: 1 addition & 1 deletion lerna.json
Expand Up @@ -3,5 +3,5 @@
"packages/*"
],
"npmClient": "npm",
"version": "3.12.2"
"version": "3.13.0"
}
2 changes: 1 addition & 1 deletion package.json
@@ -1,7 +1,7 @@
{
"name": "@less/root",
"private": true,
"version": "3.12.2",
"version": "3.13.0",
"description": "Less monorepo",
"homepage": "http://lesscss.org",
"scripts": {
Expand Down
12 changes: 1 addition & 11 deletions packages/less/Gruntfile.js
Expand Up @@ -243,9 +243,6 @@ module.exports = function(grunt) {
benchmark: {
command: "node benchmark/index.js"
},
benchmarkbrowser: {
command: "node test/browser/generator/runner.js benchmark"
},
opts: {
// test running with all current options (using `opts` since `options` means something already)
command: [
Expand Down Expand Up @@ -416,15 +413,8 @@ module.exports = function(grunt) {
]);

// Run benchmark
grunt.registerTask("benchmark-node", [
grunt.registerTask("benchmark", [
"shell:testcjs",
"shell:benchmark"
]);

// Run all browser tests
grunt.registerTask("benchmark", [
"browsertest-lessjs",
"connect",
"shell:benchmarkbrowser"
]);
};

0 comments on commit 257efdd

Please sign in to comment.