chore: debug
This commit is contained in:
parent
c19db0238e
commit
75782b8ee8
1 changed files with 6 additions and 3 deletions
|
@ -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)
|
||||
}
|
||||
|
|
Reference in a new issue