Skip to content

Commit 257efdd

Browse files
authored
Fixes #3434 - memory / runtime improvements (#3572)
* Remove class extends pattern for nodes * Fix node benchmark * v3.13.0 * Restore tree caching
1 parent 0e26859 commit 257efdd

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+8771
-14459
lines changed

dist/less.js

+2,890-3,040
Large diffs are not rendered by default.

dist/less.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/less.min.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lerna.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
"packages/*"
44
],
55
"npmClient": "npm",
6-
"version": "3.12.2"
6+
"version": "3.13.0"
77
}

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@less/root",
33
"private": true,
4-
"version": "3.12.2",
4+
"version": "3.13.0",
55
"description": "Less monorepo",
66
"homepage": "http://lesscss.org",
77
"scripts": {

packages/less/Gruntfile.js

+1-11
Original file line numberDiff line numberDiff line change
@@ -243,9 +243,6 @@ module.exports = function(grunt) {
243243
benchmark: {
244244
command: "node benchmark/index.js"
245245
},
246-
benchmarkbrowser: {
247-
command: "node test/browser/generator/runner.js benchmark"
248-
},
249246
opts: {
250247
// test running with all current options (using `opts` since `options` means something already)
251248
command: [
@@ -416,15 +413,8 @@ module.exports = function(grunt) {
416413
]);
417414

418415
// Run benchmark
419-
grunt.registerTask("benchmark-node", [
416+
grunt.registerTask("benchmark", [
420417
"shell:testcjs",
421418
"shell:benchmark"
422419
]);
423-
424-
// Run all browser tests
425-
grunt.registerTask("benchmark", [
426-
"browsertest-lessjs",
427-
"connect",
428-
"shell:benchmarkbrowser"
429-
]);
430420
};

0 commit comments

Comments
 (0)