chore: debug

This commit is contained in:
Cory Dransfeldt 2024-04-03 20:33:00 -07:00
parent c19db0238e
commit 75782b8ee8
No known key found for this signature in database

View file

@ -1,7 +1,10 @@
import { readFile } from 'fs/promises'
import { buildChart } from './helpers/music.js'
export default async function () {
let window = JSON.parse(await readFile('./src/_data/json/scrobbles-window.json', 'utf8'));
console.log(window)
return window
const window = JSON.parse(await readFile('./src/_data/json/scrobbles-window.json', 'utf8'));
const artists = JSON.parse(await readFile('./src/_data/json/artists-map.json', 'utf8'));
const albums = JSON.parse(await readFile('./src/_data/json/albums-map.json', 'utf8'));
const nowPlaying = JSON.parse(await readFile('./src/_data/json/now-playing.json', 'utf8'));
return buildChart(window, artists, albums, nowPlaying)
}