Skip to content

Commit

Permalink
chore: update documentation (#78)
Browse files Browse the repository at this point in the history
* update attachment-advanced repo

* update edge-components compatibility

* fix: add default value for weeklyDownloads

* docs: update repo branch for readme
  • Loading branch information
batosai authored May 2, 2024
1 parent 588f623 commit ec8b2d4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/services/packages_data_refresher.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ export class PackagesDataRefresher {
packages.map((pkg) => ({
packageName: pkg.name,
githubStars: pkg.stars,
weeklyDownloads: pkg.downloads,
weeklyDownloads: pkg.downloads ? pkg.downloads : 0,
firstReleaseAt: pkg.firstReleaseAt ? DateTime.fromISO(pkg.firstReleaseAt) : null,
lastReleaseAt: pkg.lastReleaseAt ? DateTime.fromISO(pkg.lastReleaseAt) : null,
})),
Expand Down
2 changes: 1 addition & 1 deletion content/packages/attachment-advanced.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: >-
Turn any field on your Lucid model to an attachment data type while
automatically generating variant sizes for the attached image files and
preview image for video and document files
repo: batosai/attachment-advanced
repo: batosai/attachment-advanced#master
npm: '@jrmc/attachment-advanced'
icon: ''
github: https://github.com/batosai/attachment-advanced
Expand Down
2 changes: 1 addition & 1 deletion content/packages/edge-components.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: edge-components
description: >-
The most popular, free and open-source Tailwind CSS component library in edge
template engine with daisyUI and Alpine.js
repo: batosai/edge-components
repo: batosai/edge-components#main
npm: '@jrmc/edge-components'
icon: ''
github: https://github.com/batosai/edge-components
Expand Down

0 comments on commit ec8b2d4

Please sign in to comment.