@tunnckocore/utils
Advanced tools
Comparing version 1.3.1 to 1.3.3
@@ -6,2 +6,25 @@ # Change Log | ||
## [1.3.3](https://github.com/tunnckoCore/opensource/compare/@tunnckocore/utils@1.3.2...@tunnckocore/utils@1.3.3) (2020-02-04) | ||
### Bug Fixes | ||
* readme generation, API heading ([aa96c3f](https://github.com/tunnckoCore/opensource/commit/aa96c3f06af5a27b0e3b4119b92a9f7978e0e251)) | ||
## [1.3.2](https://github.com/tunnckoCore/opensource/compare/@tunnckocore/utils@1.3.1...@tunnckocore/utils@1.3.2) (2020-02-04) | ||
### Bug Fixes | ||
* coverage bugs, regen ([997f459](https://github.com/tunnckoCore/opensource/commit/997f459bff26b47f9119b4b7046f7b7d8b7afd6c)) | ||
* docks bug, re-run ([286e4af](https://github.com/tunnckoCore/opensource/commit/286e4af4de74899decf0bf71124b0abb214c887a)) | ||
## [1.3.1](https://github.com/tunnckoCore/opensource/compare/@tunnckocore/utils@1.3.0...@tunnckocore/utils@1.3.1) (2020-02-03) | ||
@@ -8,0 +31,0 @@ |
{ | ||
"name": "@tunnckocore/utils", | ||
"version": "1.3.1", | ||
"version": "1.3.3", | ||
"licenseStart": 2019, | ||
@@ -76,3 +76,3 @@ "license": "MPL-2.0", | ||
}, | ||
"gitHead": "53ea9daed9e587e9f61d03f59cbbcad9e5ea1d17" | ||
"gitHead": "36720fdd18247b0ce9134b9631a6d5848e6c6c0d" | ||
} |
@@ -0,1 +1,3 @@ | ||
# @tunnckocore/utils [![npm version][npmv-img]][npmv-url] [![License][license-img]][license-url] [![Libera Manifesto][libera-manifesto-img]][libera-manifesto-url] | ||
@@ -62,14 +64,15 @@ | ||
- [Install](#install) | ||
- [API](#api) | ||
- [Contributing](#contributing) | ||
- [Guides and Community](#guides-and-community) | ||
- [Support the project](#support-the-project) | ||
* [Guides and Community](#guides-and-community) | ||
* [Support the project](#support-the-project) | ||
- [Contributors](#contributors) | ||
- [License](#license) | ||
_(TOC generated by [verb](https://github.com/verbose/verb) using | ||
[markdown-toc](https://github.com/jonschlinkert/markdown-toc))_ | ||
_(TOC generated by [verb](https://github.com/verbose/verb) using [markdown-toc](https://github.com/jonschlinkert/markdown-toc))_ | ||
## Install | ||
This project requires [**Node.js**](https://nodejs.org) **>=10.13** _(see | ||
This project requires [**Node.js**](https://nodejs.org) **>=10.13** | ||
_(see | ||
[Support & Release Policy](https://github.com/tunnckoCoreLabs/support-release-policy))_. | ||
@@ -84,2 +87,4 @@ Install it using [**yarn**](https://yarnpkg.com) or | ||
## API | ||
<!-- docks-start --> | ||
@@ -112,4 +117,3 @@ | ||
file. It's also rendered on package's page in [npmjs.com][npmv-url] and | ||
[yarnpkg.com](https://yarnpkg.com/en/package/@tunnckocore/utils) sites too! | ||
:rocket: | ||
[yarnpkg.com](https://yarnpkg.com/en/package/@tunnckocore/utils) sites too! :rocket: | ||
@@ -150,5 +154,6 @@ Not financial support? Okey! | ||
Copyright (c) 2019-present, [Charlike Mike Reagent](https://tunnckocore.com) | ||
`<opensource@tunnckocore.com>` & [contributors](#wonderful-contributors).<br> | ||
Released under the [MPL-2.0 License][license-url]. | ||
Copyright (c) 2019-present, | ||
[Charlike Mike Reagent](https://tunnckocore.com) `<opensource@tunnckocore.com>` | ||
& [contributors](#wonderful-contributors).<br> Released under the | ||
[MPL-2.0 License][license-url]. | ||
@@ -243,1 +248,2 @@ <!-- badges --> | ||
<!-- prettier-ignore-end --> | ||
@@ -266,7 +266,15 @@ const fs = require('fs'); | ||
cov: Object.keys(jestCov).reduce((acc, k) => { | ||
const newKey = k | ||
.split('/') | ||
.slice(1) | ||
.join('/'); | ||
// const newKey = k | ||
// .split('/') | ||
// .slice(1) | ||
// .join('/'); | ||
/* istanbul ignore next */ | ||
const newKey = k.endsWith('src') | ||
? k | ||
.split('/') | ||
.slice(0, -1) | ||
.join('/') | ||
: k; | ||
acc[newKey] = jestCov[k]; | ||
@@ -273,0 +281,0 @@ return acc; |
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
35222
280
245