diff --git a/.npmignore b/.npmignore index df56205..56a134e 100644 --- a/.npmignore +++ b/.npmignore @@ -1,8 +1,14 @@ -.vscode -__tests__ -test -tsconfig.json -coverage +.github/ +.vscode/ +coverage/ +docs/ +example/ +src/ .* -*.config.js -docs +*config.js* +*.md +logo.* +**/*.spec.* +**/__tests__/ +**/__mocks__/ +**/__snapshots__/ diff --git a/CHANGELOG.md b/CHANGELOG.md index 195fb31..edcaf85 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,23 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +### [2.2.1](https://github.com/SkeLLLa/fastify-status/compare/v2.2.0...v2.2.1) (2020-05-24) + +### Bug Fixes + +- clean package from junk ([d7b12fd](https://github.com/SkeLLLa/fastify-status/commit/d7b12fdcaa805f36a9792149793adfe7be6d04f6)) + +## [2.2.0](https://github.com/SkeLLLa/fastify-status/compare/v2.1.0...v2.2.0) (2020-05-24) + +### Features + +- tests, actions, logo linting ([40cd26d](https://github.com/SkeLLLa/fastify-status/commit/40cd26d42903caa966239b5c245de11ae3903ab9)) + +### Misc + +- clean package.json ([4fe4923](https://github.com/SkeLLLa/fastify-status/commit/4fe4923085cd936ea6bfc6e3a90556d764f1a3ad)) +- deps fix ([6c213cb](https://github.com/SkeLLLa/fastify-status/commit/6c213cb4b1f1b5ab4fbe7aaa3e78fe8456590be1)) + ## [2.1.0](https://gitlab.com/m03geek/fastify-status/compare/v2.0.1...v2.1.0) (2020-05-14) ### Features diff --git a/README.md b/README.md index 167c315..96de8a5 100644 --- a/README.md +++ b/README.md @@ -22,6 +22,9 @@ Returns common info about fastify server. Could be used for healthchecks and sta - [Installation](#installation) - [Usage](#usage) - [Format](#format) + - [Changelog](#changelog) + - [See also](#see-also) + - [License](#license) ## Installation diff --git a/jest.config.js b/jest.config.js index 445992c..dfa36f2 100644 --- a/jest.config.js +++ b/jest.config.js @@ -4,6 +4,6 @@ module.exports = { verbose: true, testMatch: ['**/__tests__/**/*.spec.js'], testPathIgnorePatterns: ['/node_modules/', '/build/', '/static/'], - coverageReporters: ['lcov', 'text'], + coverageReporters: ['lcov', 'text', 'json'], collectCoverageFrom: ['lib/**/*.js'], }; diff --git a/package-lock.json b/package-lock.json index bb12491..5837dbc 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "fastify-status", - "version": "2.1.0", + "version": "2.2.1", "lockfileVersion": 1, "requires": true, "dependencies": { @@ -5381,9 +5381,9 @@ } }, "hosted-git-info": { - "version": "2.8.8", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.8.tgz", - "integrity": "sha512-f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg==", + "version": "2.8.9", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", "dev": true }, "html-encoding-sniffer": { diff --git a/package.json b/package.json index 7b478b8..8083e97 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "fastify-status", - "version": "2.1.0", + "version": "2.2.1", "description": "Returns common info about fastify server. Could be used for healthchecks and status monitoring.", "keywords": [ "fastify-plugin",