Comparing version 6.1.0 to 6.2.0-next.1585268650.bf3e1310a2c25d81c8410b313b622ca2e600be14
@@ -16,3 +16,3 @@ /** Comparator for sorting fellows in an array */ | ||
this.emails = new Set() | ||
/** Set of repository slugs with the contributions from the user */ | ||
/** Map of repository slugs with the contributions from the user */ | ||
this.contributions = new Map() | ||
@@ -208,5 +208,6 @@ /** Set of repository slugs that the fellow administers to */ | ||
// fetch the years, but for now, discard it | ||
const years = String(match[1] || '').trim() || '' | ||
const years = String(match[1] || '').trim() | ||
if (years) this.years = years | ||
// fetch the name, and apply it | ||
const name = match[2].trim() || '' | ||
const name = match[2].trim() | ||
if (name) this._name = name | ||
@@ -213,0 +214,0 @@ } |
@@ -19,3 +19,3 @@ 'use strict' | ||
this.emails = new Set() | ||
/** Set of repository slugs with the contributions from the user */ | ||
/** Map of repository slugs with the contributions from the user */ | ||
this.contributions = new Map() | ||
@@ -211,5 +211,6 @@ /** Set of repository slugs that the fellow administers to */ | ||
// fetch the years, but for now, discard it | ||
const years = String(match[1] || '').trim() || '' | ||
const years = String(match[1] || '').trim() | ||
if (years) this.years = years | ||
// fetch the name, and apply it | ||
const name = match[2].trim() || '' | ||
const name = match[2].trim() | ||
if (name) this._name = name | ||
@@ -216,0 +217,0 @@ } |
# History | ||
## v6.2.0 2020 March 27 | ||
- Added `Fellow::years` | ||
## v6.1.0 2020 March 27 | ||
@@ -4,0 +8,0 @@ |
{ | ||
"name": "fellow", | ||
"version": "6.1.0", | ||
"version": "6.2.0-next.1585268650.bf3e1310a2c25d81c8410b313b622ca2e600be14", | ||
"description": "Fellow is a package for creating people that can be unified by their shared values via a singleton list on the class", | ||
@@ -5,0 +5,0 @@ "homepage": "https://github.com/bevry/fellow", |
@@ -55,3 +55,3 @@ <!-- TITLE/ --> | ||
<script type="module"> | ||
import pkg from '//cdn.pika.dev/fellow/^6.1.0' | ||
import pkg from '//cdn.pika.dev/fellow/^6.2.0' | ||
</script> | ||
@@ -64,3 +64,3 @@ ``` | ||
<script type="module"> | ||
import pkg from '//unpkg.com/fellow@^6.1.0' | ||
import pkg from '//unpkg.com/fellow@^6.2.0' | ||
</script> | ||
@@ -73,3 +73,3 @@ ``` | ||
<script type="module"> | ||
import pkg from '//dev.jspm.io/fellow@6.1.0' | ||
import pkg from '//dev.jspm.io/fellow@6.2.0' | ||
</script> | ||
@@ -116,3 +116,3 @@ ``` | ||
<ul><li><a href="http://balupton.com">Benjamin Lupton</a> — <a href="https://github.com/bevry/fellow/commits?author=balupton" title="View the GitHub contributions of Benjamin Lupton on repository bevry/fellow">view contributions</a></li></ul> | ||
<ul><li><a href="http://balupton.com">Benjamin Lupton</a></li></ul> | ||
@@ -137,4 +137,3 @@ <h3>Sponsors</h3> | ||
<ul><li><a href="http://balupton.com">Benjamin Lupton</a> — <a href="https://github.com/bevry/fellow/commits?author=balupton" title="View the GitHub contributions of Benjamin Lupton on repository bevry/fellow">view contributions</a></li> | ||
<li><a href="http://github.com/apps/dependabot-preview">dependabot-preview[bot]</a> — <a href="https://github.com/bevry/fellow/commits?author=dependabot-preview[bot]" title="View the GitHub contributions of dependabot-preview[bot] on repository bevry/fellow">view contributions</a></li></ul> | ||
<ul><li><a href="http://balupton.com">Benjamin Lupton</a></li></ul> | ||
@@ -141,0 +140,0 @@ <a href="https://github.com/bevry/fellow/blob/master/CONTRIBUTING.md#files">Discover how you can contribute by heading on over to the <code>CONTRIBUTING.md</code> file.</a> |
@@ -17,2 +17,5 @@ /** Comparator for sorting fellows in an array */ | ||
/** Years active for the current repository, extracted from the name */ | ||
private years?: string | ||
/** URLs used */ | ||
@@ -24,3 +27,3 @@ readonly urls = new Set<string>() | ||
/** Set of repository slugs with the contributions from the user */ | ||
/** Map of repository slugs with the contributions from the user */ | ||
readonly contributions = new Map<string, number>() | ||
@@ -246,5 +249,6 @@ | ||
// fetch the years, but for now, discard it | ||
const years = String(match[1] || '').trim() || '' | ||
const years = String(match[1] || '').trim() | ||
if (years) this.years = years | ||
// fetch the name, and apply it | ||
const name = match[2].trim() || '' | ||
const name = match[2].trim() | ||
if (name) this._name = name | ||
@@ -251,0 +255,0 @@ } |
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
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
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
1056
52680
1
153