Skip to content

Commit

Permalink
Merge pull request #57 from RSeidelsohn/release-3.0.1
Browse files Browse the repository at this point in the history
Release 3.0.1
  • Loading branch information
RSeidelsohn authored Jan 30, 2023
2 parents 430ae0d + 8d5f65c commit 5557711
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ This of course doesn't necessarily mean that older Node versions will not be abl

Should there be any need for security updates or new features supported by older NodeJS versions, [please tell me so] (mailto:rseidelsohn@gmail.com?subject=Support%20request%20for%20old%20license-checker-rseidelsohn%20-%20version). I can not promise that I will take the time to fulfill the request, but if you do not ask me, I certainly won't.

This being said, the only change with 4.0.0 is a switch in the `.ncmrc` file of the project (for developers working on this module only) from NodeJS v14 to NodeJS v18 - which again is a LTS version, a version with long tiome support - and some minor updates to the README file, adding stuff that was missing in the past due to a lack of regular maintenance from my side.
This being said, the only change with 4.0.0 is a switch in the `.nvmrc` file of the project (for developers working on this module only) from NodeJS v14 to NodeJS v18 - which again is a LTS version, a version with long time support - and some minor updates to the README file, adding stuff that was missing in the past due to a lack of regular maintenance from my side.

That then being said, I really want to invite you to add pull requests to this project. If you feel like, please ask me to give you higher-level access to this repo. I am not keen on mainaining it on my own - I just took it over in order to add my own feature request after the original author stopped finding the time to further support it. Now, I am not using this module for work any more (which might change in the future), but I see my responsibility to at least taking care of pull requests and releasing them, and from time to time working on feature requests as a kind of kata for me.

Expand Down
4 changes: 2 additions & 2 deletions lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -451,8 +451,8 @@ exports.init = function init(args, callback) {
function excludePackagesStartingWith(blacklist, currentResult) {
const resultJson = { ...currentResult };

for(const pkgName in resultJson){
for(const denyPrefix of blacklist){
for (const pkgName in resultJson) {
for (const denyPrefix of blacklist) {
if (pkgName.startsWith(denyPrefix)) delete resultJson[pkgName];
}
}
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "license-checker-rseidelsohn",
"description": "Extract NPM package licenses - Feature enhanced version of the original license-checker v25.0.1",
"author": "Roman Seidelsohn <rseidelsohn@gmail.com>",
"version": "4.0.0",
"version": "4.0.1",
"license": "BSD-3-Clause",
"private": false,
"engines": {
Expand Down Expand Up @@ -71,6 +71,7 @@
"Dmitry Semigradsky <semigradskyd@gmail.com>",
"Drew Folta <drew@folta.net>",
"Elijah Insua <tmpvar@gmail.com>",
"Eugene G <eugene.g@firstassethr.com>",
"Francois Zaninotto <fzaninotto@gmail.com>",
"Glen Arrowsmith <glen.arrowsmith@gmail.com>",
"Helio Frota <00hf11@gmail.com>",
Expand Down

0 comments on commit 5557711

Please sign in to comment.