Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes #3434 - memory / runtime improvements #3572

Merged
merged 7 commits into from
Dec 12, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
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"
]);
};