gitlab-calendar
Advanced tools
Comparing version 1.0.0 to 2.0.0
@@ -7,2 +7,20 @@ ### Changelog | ||
### [2.0.0](https://github.com/scriptex/gitlab-calendar/compare/1.0.0...2.0.0) | ||
> 12 September 2022 | ||
- Update implementation and metadata [`#17`](https://github.com/scriptex/gitlab-calendar/pull/17) | ||
- Bump parse-url from 6.0.0 to 6.0.2 [`#16`](https://github.com/scriptex/gitlab-calendar/pull/16) | ||
- Update dependency release-it to v15 [`#15`](https://github.com/scriptex/gitlab-calendar/pull/15) | ||
- Bump minimist from 1.2.5 to 1.2.6 [`#14`](https://github.com/scriptex/gitlab-calendar/pull/14) | ||
- Update actions/checkout action to v3 [`#11`](https://github.com/scriptex/gitlab-calendar/pull/11) | ||
- Update actions/setup-node action to v3 [`#10`](https://github.com/scriptex/gitlab-calendar/pull/10) | ||
- Bump node-fetch from 2.6.6 to 2.6.7 [`#9`](https://github.com/scriptex/gitlab-calendar/pull/9) | ||
- Update dependency release-it to v14.12.1 [`#7`](https://github.com/scriptex/gitlab-calendar/pull/7) | ||
- Update dependency date-fns to v2.28.0 [`#6`](https://github.com/scriptex/gitlab-calendar/pull/6) | ||
- [ImgBot] Optimize images [`#5`](https://github.com/scriptex/gitlab-calendar/pull/5) | ||
- Update dependency release-it to v15.1.1 [`20b4b1e`](https://github.com/scriptex/gitlab-calendar/commit/20b4b1e20a8f948550d8c506fac2a9d1a336224a) | ||
- Update dependency release-it to v14.14.3 [`0ce7133`](https://github.com/scriptex/gitlab-calendar/commit/0ce713368b6ad1999f20104ce0d2005367d51541) | ||
- Update dependency release-it to v14.14.1 [`6d24749`](https://github.com/scriptex/gitlab-calendar/commit/6d2474954d13f503b11300b7f6f06201d7948613) | ||
#### 1.0.0 | ||
@@ -9,0 +27,0 @@ |
104
package.json
{ | ||
"name": "gitlab-calendar", | ||
"version": "1.0.0", | ||
"version": "2.0.0", | ||
"description": "Embed your Gitlab Contributions Calendar anywhere", | ||
"keywords": [], | ||
"keywords": [ | ||
"Calendar", | ||
"Contributions", | ||
"Gitlab Calendar", | ||
"Contributions Calendar" | ||
], | ||
"homepage": "https://atanas.info/projects/gitlab-calendar.html", | ||
"bugs": { | ||
"url": "https://github.com/scriptex/gitlab-calendar/issues", | ||
"email": "scriptex.bg@gmail.com" | ||
"email": "hi@atanas.info" | ||
}, | ||
"license": "MIT", | ||
"author": { | ||
"name": "Atanas Atanasov", | ||
"email": "scriptex.bg@gmail.com", | ||
"url": "https://atanas.info" | ||
"author": "Atanas Atanasov <hi@atanas.info> (https://atanas.info)", | ||
"funding": "https://github.com/sponsors/scriptex", | ||
"main": "dist/index.js", | ||
"types": "dist/index.d.ts", | ||
"repository": { | ||
"type": "git", | ||
"url": "github:scriptex/gitlab-calendar" | ||
}, | ||
"funding": [ | ||
{ | ||
"type": "individual", | ||
"url": "https://www.paypal.me/scriptex" | ||
}, | ||
{ | ||
"type": "patreon", | ||
"url": "https://www.patreon.com/atanas" | ||
}, | ||
{ | ||
"type": "individual", | ||
"url": "https://ko-fi.com/scriptex" | ||
} | ||
], | ||
"main": "dist/gitlab-calendar.js", | ||
"typings": "dist/gitlab-calendar.d.ts", | ||
"repository": "https://github.com/scriptex/gitlab-calendar", | ||
"scripts": { | ||
"start": "tsc --watch", | ||
"build": "rm -rf dist && tsc && cp ./dist/gitlab-calendar.js ./demo/gitlab-calendar.js", | ||
"copy": "cp -rf dist demo", | ||
"clean": "rm -rf dist && rm -rf demo/dist", | ||
"build": "yarn clean && webpack && yarn copy", | ||
"start": "yarn clean && webpack --watch && yarn copy", | ||
"release-minor": "release-it minor --ci", | ||
@@ -42,19 +35,18 @@ "release-patch": "release-it patch --ci", | ||
}, | ||
"dependencies": { | ||
"d3-selection": "3.0.0", | ||
"date-fns": "2.27.0" | ||
}, | ||
"dependencies": {}, | ||
"devDependencies": { | ||
"@types/d3-selection": "3.0.2", | ||
"release-it": "14.11.8", | ||
"typescript": "4.5.2" | ||
}, | ||
"peerDependencies": { | ||
"@types/d3-selection": "3.0.3", | ||
"d3-selection": "3.0.0", | ||
"date-fns": "2.26.0" | ||
"date-fns": "2.29.2", | ||
"release-it": "15.4.1", | ||
"ts-loader": "9.3.1", | ||
"typescript": "4.8.3", | ||
"webpack": "5.74.0", | ||
"webpack-cli": "4.10.0" | ||
}, | ||
"release-it": { | ||
"hooks": { | ||
"after:release": "yarn changelog-local && git add CHANGELOG.md && git commit -m \"Update CHANGELOG.md with the latest changes\" && git push" | ||
"after:release": "yarn changelog-local && git add CHANGELOG.md && git commit -m \"Update CHANGELOG.md with the latest changes\" --no-verify && git push" | ||
}, | ||
"use": "pkg.version", | ||
"git": { | ||
@@ -69,5 +61,7 @@ "changelog": "git log --pretty=format:\"* %s (%h)\" ${from}...${to}", | ||
"commitMessage": "Release ${version}", | ||
"commitArgs": [], | ||
"commitArgs": [ | ||
"--no-verify" | ||
], | ||
"tag": true, | ||
"tagName": null, | ||
"tagName": "${version}", | ||
"tagAnnotation": "Release ${version}", | ||
@@ -81,34 +75,12 @@ "tagArgs": [], | ||
}, | ||
"npm": { | ||
"publish": false, | ||
"publishPath": ".", | ||
"tag": null, | ||
"otp": null, | ||
"ignoreVersion": false, | ||
"skipChecks": false, | ||
"timeout": 10 | ||
}, | ||
"github": { | ||
"release": false, | ||
"releaseName": "Release ${version}", | ||
"releaseNotes": null, | ||
"preRelease": false, | ||
"draft": false, | ||
"tokenRef": "GITHUB_TOKEN", | ||
"assets": null, | ||
"host": null, | ||
"timeout": 0, | ||
"proxy": null, | ||
"skipChecks": false | ||
"release": false | ||
}, | ||
"gitlab": { | ||
"release": false, | ||
"releaseName": "Release ${version}", | ||
"releaseNotes": null, | ||
"tokenRef": "GITLAB_TOKEN", | ||
"assets": null, | ||
"origin": null, | ||
"skipChecks": false | ||
"release": false | ||
}, | ||
"npm": { | ||
"publish": false | ||
} | ||
} | ||
} |
193
README.md
@@ -1,24 +0,12 @@ | ||
# Gitlab Calendar [![npm][npm-version-img]][npm-version-url] [![MIT license][license-img]][license-url] [![Twitter][twitter-img]][twitter-url] [![Analytics][analytics-img]][analytics-url] | ||
[![Github Build](https://github.com/scriptex/gitlab-calendar/workflows/Build/badge.svg)](https://github.com/scriptex/gitlab-calendar/actions?query=workflow%3ABuild) | ||
[![Codacy Badge](https://app.codacy.com/project/badge/Grade/34d3d75710534dc6a38c3584a1dcd068)](https://www.codacy.com/gh/scriptex/gitlab-calendar/dashboard?utm_source=github.com&utm_medium=referral&utm_content=scriptex/gitlab-calendar&utm_campaign=Badge_Grade) | ||
[![Codebeat Badge](https://codebeat.co/badges/d765a4c8-2c0e-44f2-89c3-fa364fdc14e6)](https://codebeat.co/projects/github-com-scriptex-gitlab-calendar-master) | ||
[![CodeFactor Badge](https://www.codefactor.io/repository/github/scriptex/gitlab-calendar/badge)](https://www.codefactor.io/repository/github/scriptex/gitlab-calendar) | ||
[![DeepScan grade](https://deepscan.io/api/teams/3574/projects/5257/branches/40799/badge/grade.svg)](https://deepscan.io/dashboard#view=project&tid=3574&pid=5257&bid=40799) | ||
[![Analytics](https://ga-beacon-361907.ew.r.appspot.com/UA-83446952-1/github.com/scriptex/gitlab-calendar/README.md?pixel)](https://github.com/scriptex/gitlab-calendar/) | ||
# Gitlab Calendar | ||
> Embed your Gitlab Contributions Calendar anywhere | ||
[![All issues on Github][github-issues-img]][github-issues-url] | ||
[![Open issues on Github][github-open-issues-img]][github-open-issues-url] | ||
[![Closed issues on Github][github-closed-issues-img]][github-closed-issues-url] | ||
[![Latest Github gag][github-tag-img]][github-tag-url] | ||
[![GitHub last commit][last-commit-img]][last-commit-url] | ||
[![Weekly downloads on NPM][npm-downloads-weekly-img]][npm-url] | ||
[![Monthly downloads on NPM][npm-downloads-monthly-img]][npm-url] | ||
[![Yearly downloads on NPM][npm-downloads-yearly-img]][npm-url] | ||
[![Total downloads on NPM][npm-downloads-total-img]][npm-url] | ||
[![Githib build status][github-status-img]][github-status-url] | ||
[![Combined Github checks][github-checks-img]][github-checks-url] | ||
![Publish size][publish-size-img] | ||
![Top language][github-top-language-img] | ||
![Used languages count][github-languages-img] | ||
[![Renovate App Status][renovateapp-img]][renovateapp-url] | ||
[![Make A Pull Request][prs-welcome-img]][prs-welcome-url] | ||
This package allows you to embed your Gitlab Contributions Calendar in any website. | ||
@@ -30,5 +18,20 @@ | ||
## Visitor stats | ||
![GitHub stars](https://img.shields.io/github/stars/scriptex/gitlab-calendar?style=social) | ||
![GitHub forks](https://img.shields.io/github/forks/scriptex/gitlab-calendar?style=social) | ||
![GitHub watchers](https://img.shields.io/github/watchers/scriptex/gitlab-calendar?style=social) | ||
![GitHub followers](https://img.shields.io/github/followers/scriptex?style=social) | ||
## Code stats | ||
![GitHub code size in bytes](https://img.shields.io/github/languages/code-size/scriptex/gitlab-calendar) | ||
![GitHub repo size](https://img.shields.io/github/repo-size/scriptex/gitlab-calendar?style=plastic) | ||
![GitHub language count](https://img.shields.io/github/languages/count/scriptex/gitlab-calendar?style=plastic) | ||
![GitHub top language](https://img.shields.io/github/languages/top/scriptex/gitlab-calendar?style=plastic) | ||
![GitHub last commit](https://img.shields.io/github/last-commit/scriptex/gitlab-calendar?style=plastic) | ||
## Live preview ([link](https://atanas.info/stats)) | ||
![Gitlab Calendar Screenshot](./assets/gitlab-calendar.png) | ||
![Gitlab Calendar Screenshot](https://raw.githubusercontent.com/scriptex/gitlab-calendar/master/assets/gitlab-calendar.png) | ||
@@ -88,60 +91,98 @@ ## Installation | ||
## Support this project | ||
## LICENSE | ||
[![Tweet][tweet-img]][tweet-url] | ||
[![Donate on PayPal][paypal-img]][paypal-url] | ||
[![Become a Patron][patreon-img]][patreon-url] | ||
[![Buy Me A Coffee][ko-fi-img]][ko-fi-url] | ||
[![Donate on Liberapay][liberapay-img]][liberapay-url] | ||
[![Donate on Issuehunt][issuehunt-img]][issuehunt-url] | ||
MIT | ||
## LICENSE | ||
--- | ||
[MIT][license-url] | ||
<div align="center"> | ||
Connect with me: | ||
</div> | ||
[npm-version-img]: https://badgen.net/npm/v/gitlab-calendar?icon=npm | ||
[npm-version-url]: https://www.npmjs.com/package/gitlab-calendar | ||
[license-img]: https://badgen.net/npm/license/gitlab-calendar | ||
[license-url]: https://github.com/scriptex/gitlab-calendar/blob/master/LICENSE | ||
[twitter-url]: https://twitter.com/scriptexbg | ||
[twitter-img]: https://badgen.net/twitter/follow/scriptexbg?icon=twitter&color=1da1f2&cache=300 | ||
[github-tag-img]: https://badgen.net/github/tag/scriptex/gitlab-calendar?icon=github | ||
[github-tag-url]: https://github.com/scriptex/gitlab-calendar/releases/latest | ||
[github-checks-img]: https://badgen.net/github/checks/scriptex/gitlab-calendar?icon=github | ||
[github-checks-url]: https://github.com/scriptex/gitlab-calendar | ||
[github-issues-img]: https://badgen.net/github/issues/scriptex/gitlab-calendar?icon=github | ||
[github-issues-url]: https://github.com/scriptex/gitlab-calendar/issues | ||
[github-open-issues-img]: https://badgen.net/github/open-issues/scriptex/gitlab-calendar?icon=github | ||
[github-open-issues-url]: https://github.com/scriptex/gitlab-calendar/issues?q=is%3Aopen+is%3Aissue | ||
[github-closed-issues-img]: https://badgen.net/github/closed-issues/scriptex/gitlab-calendar?icon=github | ||
[github-closed-issues-url]: https://github.com/scriptex/gitlab-calendar/issues?q=is%3Aissue+is%3Aclosed | ||
[last-commit-img]: https://badgen.net/github/last-commit/scriptex/gitlab-calendar?icon=github | ||
[last-commit-url]: https://github.com/scriptex/gitlab-calendar/commits/master | ||
[analytics-img]: https://ga-beacon.appspot.com/UA-83446952-1/github.com/scriptex/gitlab-calendar/README.md | ||
[analytics-url]: https://github.com/scriptex/gitlab-calendar/ | ||
[npm-downloads-weekly-img]: https://badgen.net/npm/dw/gitlab-calendar?icon=npm | ||
[npm-downloads-monthly-img]: https://badgen.net/npm/dm/gitlab-calendar?icon=npm | ||
[npm-downloads-yearly-img]: https://badgen.net/npm/dy/gitlab-calendar?icon=npm | ||
[npm-downloads-total-img]: https://badgen.net/npm/dt/gitlab-calendar?icon=npm | ||
[npm-url]: https://www.npmjs.com/package/gitlab-calendar | ||
[tweet-img]: https://img.shields.io/badge/Tweet-Share_this_repository-blue.svg?style=flat-square&logo=twitter&color=38A1F3 | ||
[tweet-url]: https://twitter.com/intent/tweet?text=Checkout%20this%20awesome%20software%20project%3A&url=https%3A%2F%2Fgithub.com%2Fscriptex%2Fgitlab-calendar&via=scriptexbg&hashtags=software%2Cgithub%2Ccode%2Cawesome | ||
[paypal-img]: https://img.shields.io/badge/Donate-Support_me_on_PayPal-blue.svg?style=flat-square&logo=paypal&color=222d65 | ||
[paypal-url]: https://www.paypal.me/scriptex | ||
[patreon-img]: https://img.shields.io/badge/Become_Patron-Support_me_on_Patreon-blue.svg?style=flat-square&logo=patreon&color=e64413 | ||
[patreon-url]: https://www.patreon.com/atanas | ||
[ko-fi-img]: https://img.shields.io/badge/Donate-Buy%20me%20a%20coffee-yellow.svg?logo=ko-fi | ||
[ko-fi-url]: https://ko-fi.com/scriptex | ||
[liberapay-img]: https://img.shields.io/liberapay/receives/scriptex.svg?logo=liberapay | ||
[liberapay-url]: https://liberapay.com/scriptex | ||
[issuehunt-img]: https://raw.githubusercontent.com/BoostIO/issuehunt-materials/master/v1/issuehunt-shield-v1.svg | ||
[issuehunt-url]: https://issuehunt.io/r/scriptex/gitlab-calendar | ||
[publish-size-img]: https://badgen.net/packagephobia/publish/gitlab-calendar | ||
[renovateapp-img]: https://badgen.net/badge/renovate/enabled/green?cache=300 | ||
[renovateapp-url]: https://renovatebot.com | ||
[prs-welcome-img]: https://badgen.net/badge/PRs/welcome/green?cache=300 | ||
[prs-welcome-url]: https://github.com/scriptex/gitlab-calendar/pulls | ||
[github-status-img]: https://badgen.net/github/status/scriptex/gitlab-calendar?icon=github | ||
[github-status-url]: https://github.com/scriptex/gitlab-calendar/actions/workflows/build.yml | ||
[github-languages-img]: https://img.shields.io/github/languages/count/scriptex/gitlab-calendar | ||
[github-top-language-img]: https://img.shields.io/github/languages/top/scriptex/gitlab-calendar | ||
<br /> | ||
<div align="center"> | ||
<a href="https://atanas.info"> | ||
<img src="https://raw.githubusercontent.com/scriptex/socials/master/styled-assets/logo.svg" height="20" alt=""> | ||
</a> | ||
| ||
<a href="mailto:hi@atanas.info"> | ||
<img src="https://raw.githubusercontent.com/scriptex/socials/master/styled-assets/email.svg" height="20" alt=""> | ||
</a> | ||
| ||
<a href="https://www.linkedin.com/in/scriptex/"> | ||
<img src="https://raw.githubusercontent.com/scriptex/socials/master/styled-assets/linkedin.svg" height="20" alt=""> | ||
</a> | ||
| ||
<a href="https://github.com/scriptex"> | ||
<img src="https://raw.githubusercontent.com/scriptex/socials/master/styled-assets/github.svg" height="20" alt=""> | ||
</a> | ||
| ||
<a href="https://gitlab.com/scriptex"> | ||
<img src="https://raw.githubusercontent.com/scriptex/socials/master/styled-assets/gitlab.svg" height="20" alt=""> | ||
</a> | ||
| ||
<a href="https://twitter.com/scriptexbg"> | ||
<img src="https://raw.githubusercontent.com/scriptex/socials/master/styled-assets/twitter.svg" height="20" alt=""> | ||
</a> | ||
| ||
<a href="https://www.npmjs.com/~scriptex"> | ||
<img src="https://raw.githubusercontent.com/scriptex/socials/master/styled-assets/npm.svg" height="20" alt=""> | ||
</a> | ||
| ||
<a href="https://www.youtube.com/user/scriptex"> | ||
<img src="https://raw.githubusercontent.com/scriptex/socials/master/styled-assets/youtube.svg" height="20" alt=""> | ||
</a> | ||
| ||
<a href="https://stackoverflow.com/users/4140082/atanas-atanasov"> | ||
<img src="https://raw.githubusercontent.com/scriptex/socials/master/styled-assets/stackoverflow.svg" height="20" alt=""> | ||
</a> | ||
| ||
<a href="https://codepen.io/scriptex/"> | ||
<img src="https://raw.githubusercontent.com/scriptex/socials/master/styled-assets/codepen.svg" width="20" alt=""> | ||
</a> | ||
| ||
<a href="https://profile.codersrank.io/user/scriptex"> | ||
<img src="https://raw.githubusercontent.com/scriptex/socials/master/styled-assets/codersrank.svg" height="20" alt=""> | ||
</a> | ||
| ||
<a href="https://linktr.ee/scriptex"> | ||
<img src="https://raw.githubusercontent.com/scriptex/socials/master/styled-assets/linktree.svg" height="20" alt=""> | ||
</a> | ||
</div> | ||
--- | ||
<div align="center"> | ||
Support and sponsor my work: | ||
<br /> | ||
<br /> | ||
<a href="https://twitter.com/intent/tweet?text=Checkout%20this%20awesome%20developer%20profile%3A&url=https%3A%2F%2Fgithub.com%2Fscriptex&via=scriptexbg&hashtags=software%2Cgithub%2Ccode%2Cawesome" title="Tweet"> | ||
<img src="https://img.shields.io/badge/Tweet-Share_my_profile-blue.svg?logo=twitter&color=38A1F3" /> | ||
</a> | ||
<a href="https://paypal.me/scriptex" title="Donate on Paypal"> | ||
<img src="https://img.shields.io/badge/Donate-Support_me_on_PayPal-blue.svg?logo=paypal&color=222d65" /> | ||
</a> | ||
<a href="https://revolut.me/scriptex" title="Donate on Revolut"> | ||
<img src="https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/scriptex/scriptex/master/badges/revolut.json" /> | ||
</a> | ||
<a href="https://patreon.com/atanas" title="Become a Patron"> | ||
<img src="https://img.shields.io/badge/Become_Patron-Support_me_on_Patreon-blue.svg?logo=patreon&color=e64413" /> | ||
</a> | ||
<a href="https://ko-fi.com/scriptex" title="Buy Me A Coffee"> | ||
<img src="https://img.shields.io/badge/Donate-Buy%20me%20a%20coffee-yellow.svg?logo=ko-fi" /> | ||
</a> | ||
<a href="https://liberapay.com/scriptex/donate" title="Donate on Liberapay"> | ||
<img src="https://img.shields.io/liberapay/receives/scriptex?label=Donate%20on%20Liberapay&logo=liberapay" /> | ||
</a> | ||
<a href="https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/scriptex/scriptex/master/badges/bitcoin.json" title="Donate Bitcoin"> | ||
<img src="https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/scriptex/scriptex/master/badges/bitcoin.json" /> | ||
</a> | ||
<a href="https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/scriptex/scriptex/master/badges/etherium.json" title="Donate Etherium"> | ||
<img src="https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/scriptex/scriptex/master/badges/etherium.json" /> | ||
</a> | ||
<a href="https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/scriptex/scriptex/master/badges/shiba-inu.json" title="Donate Shiba Inu"> | ||
<img src="https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/scriptex/scriptex/master/badges/shiba-inu.json" /> | ||
</a> | ||
</div> |
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
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
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
No repository
Supply chain riskPackage does not have a linked source code repository. Without this field, a package will have no reference to the location of the source code use to generate the package.
Found 1 instance in 1 package
269870
0
187
0
8
501
1
- Removedd3-selection@3.0.0
- Removeddate-fns@2.27.0
- Removedd3-selection@3.0.0(transitive)
- Removeddate-fns@2.27.0(transitive)