chore: pull month cart data

This commit is contained in:
Cory Dransfeldt 2024-04-04 17:13:24 -07:00
parent 4f674fb17d
commit ca38137099
No known key found for this signature in database

10
src/_data/musicCharts.js Normal file
View file

@ -0,0 +1,10 @@
import { readFile } from 'fs/promises'
import { buildChart } from './helpers/music.js'
export default async function () {
const monthChart = JSON.parse(await readFile('./src/_data/json/scrobbles-month-chart.json', 'utf8'));
console.log(buildChart(monthChart['data'], artists, albums, nowPlaying))
return {
month: buildChart(monthChart['data'], artists, albums, nowPlaying)
}
}