fix: album release sort
This commit is contained in:
parent
48d27c8ca9
commit
ff288d4a6f
3 changed files with 5 additions and 4 deletions
4
package-lock.json
generated
4
package-lock.json
generated
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "16.5.4",
|
"version": "16.5.6",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "16.5.4",
|
"version": "16.5.6",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@cdransf/api-text": "^1.2.2",
|
"@cdransf/api-text": "^1.2.2",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "16.5.4",
|
"version": "16.5.6",
|
||||||
"description": "The source for my personal site. Built using 11ty.",
|
"description": "The source for my personal site. Built using 11ty.",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
|
@ -32,6 +32,7 @@ export default async function () {
|
||||||
url: album['release_link'],
|
url: album['release_link'],
|
||||||
genre: album['artists']['genre'],
|
genre: album['artists']['genre'],
|
||||||
mbid: album['artists']['mbid'],
|
mbid: album['artists']['mbid'],
|
||||||
|
timestamp: DateTime.fromISO(album['release_date']).toSeconds()
|
||||||
}
|
}
|
||||||
})
|
}).sort((a, b) => a.timestamp - b.timestamp)
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue