chore: pull month cart data
This commit is contained in:
parent
4f674fb17d
commit
ca38137099
1 changed files with 10 additions and 0 deletions
10
src/_data/musicCharts.js
Normal file
10
src/_data/musicCharts.js
Normal 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)
|
||||
}
|
||||
}
|
Reference in a new issue