Skip to content

Commit

Permalink
Release/v4.2.0 (#3814)
Browse files Browse the repository at this point in the history
  • Loading branch information
matthew-dean committed Aug 19, 2023
1 parent 012d549 commit 6390ae3
Show file tree
Hide file tree
Showing 26 changed files with 11,462 additions and 10,140 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Expand Up @@ -31,7 +31,7 @@ jobs:
# Output useful info for debugging.
run: node --version && npm --version
- name: Run unit test
run: cd packages/less && npm test
run: npm run test

fast_node_test:
name: 'Tests on ${{matrix.os}} with node${{matrix.node}}'
Expand All @@ -50,4 +50,4 @@ jobs:
- name: Print put node & npm version
run: node --version && npm --version
- name: Run unit test
run: cd packages/less && npm test
run: npm run test
15 changes: 15 additions & 0 deletions CONTRIBUTING.md
Expand Up @@ -48,3 +48,18 @@ _Pull requests are encouraged!_
If you want to take an issue just add a small comment saying you are having a go at something, so we don't get duplication.

Learn more about [developing Less.js](http://lesscss.org/usage/#developing-less).

## Releases

Releases are managed using Lerna. First, we determine if the release is a major (breaking), minor (new features), or patch (bug fix) change.

Then, you can run Lerna with a command like:
```
npx lerna version minor
```

To publish, run the Lerna command for publishing without incrementing the version, as in:
```
npx lerna publish from-package --no-private
```

4 changes: 2 additions & 2 deletions dist/less.js
@@ -1,5 +1,5 @@
/**
* Less - Leaner CSS v4.1.3
* Less - Leaner CSS v4.2.0
* http://lesscss.org
*
* Copyright (c) 2009-2023, Alexis Sellier <self@cloudhead.net>
Expand Down Expand Up @@ -10751,7 +10751,7 @@
return render;
}

var version = "4.1.3";
var version = "4.2.0";

function parseNodeVersion(version) {
var match = version.match(/^v(\d{1,2})\.(\d{1,2})\.(\d{1,2})(?:-([0-9A-Za-z-.]+))?(?:\+([0-9A-Za-z-.]+))?$/); // eslint-disable-line max-len
Expand Down
4 changes: 2 additions & 2 deletions dist/less.min.js

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion lerna.json
Expand Up @@ -2,6 +2,7 @@
"packages": [
"packages/*"
],
"useNx": false,
"npmClient": "npm",
"version": "4.1.1"
"version": "4.2.0"
}

0 comments on commit 6390ae3

Please sign in to comment.