git-authors-cli
Advanced tools
Comparing version 1.0.21 to 1.0.22
#!/usr/bin/env node | ||
'use strict' | ||
const emailRegex = require('email-regex')() | ||
const emailRegex = require('email-regex') | ||
const existsFile = require('exists-file') | ||
@@ -136,3 +136,3 @@ const jsonFuture = require('json-future') | ||
) | ||
.filter(({ email }) => emailRegex.test(email)) | ||
.filter(({ email }) => emailRegex().test(email)) | ||
.sort((c1, c2) => c2.commits - c1.commits) | ||
@@ -139,0 +139,0 @@ |
@@ -5,2 +5,9 @@ # Changelog | ||
### [1.0.22](https://github.com/Kikobeats/git-authors-cli/compare/v1.0.21...v1.0.22) (2020-02-20) | ||
### Bug Fixes | ||
* create a new email validator every time ([1b610c8](https://github.com/Kikobeats/git-authors-cli/commit/1b610c8b0ea17725f53560f6c2fdab9b6517ce48)) | ||
### [1.0.21](https://github.com/Kikobeats/git-authors-cli/compare/v1.0.20...v1.0.21) (2020-02-17) | ||
@@ -7,0 +14,0 @@ |
@@ -5,3 +5,3 @@ { | ||
"homepage": "https://nicedoc.io/Kikobeats/git-authors-cli", | ||
"version": "1.0.21", | ||
"version": "1.0.22", | ||
"bin": { | ||
@@ -17,3 +17,5 @@ "git-authors": "bin/index.js", | ||
"contributors": [ | ||
"Jorge Marin <jorge@bitnami.com>" | ||
"Jorge Marin <jorge@bitnami.com>", | ||
"Manuel Rueda <manuel.rueda.un@gmail.com>", | ||
"achingbrain <alex@achingbrain.net>" | ||
], | ||
@@ -20,0 +22,0 @@ "repository": { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
16745