From 209e04c5559c1853161412f0b08d722c5c26fb55 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Wed, 3 Apr 2024 19:50:14 -0700 Subject: [PATCH] chore: debug --- plugins/fetch-scrobbles/index.js | 8 ++++---- src/_data/test.js | 6 ++++++ 2 files changed, 10 insertions(+), 4 deletions(-) create mode 100644 src/_data/test.js diff --git a/plugins/fetch-scrobbles/index.js b/plugins/fetch-scrobbles/index.js index 9008deea..a7793090 100644 --- a/plugins/fetch-scrobbles/index.js +++ b/plugins/fetch-scrobbles/index.js @@ -13,8 +13,8 @@ export const onPreBuild = async ({ constants }) => { const artistsMap = await artists.get('artists-map', { type: 'json' }) const albumsMap = await albums.get('albums-map', { type: 'json' }) const nowPlaying = await scrobbles.get('now-playing', { type: 'json'}) - fs.writeFileSync('/src/_data/json/scrobbles-window.json', JSON.stringify(windowData)) - fs.writeFileSync('/src/_data/json/artists-map.json', JSON.stringify(artistsMap)) - fs.writeFileSync('/src/_data/json/albums-map.json', JSON.stringify(artistsMap)) - fs.writeFileSync('/src/_data/json/now-playing.json', JSON.stringify(artistsMap)) + fs.writeFileSync('./src/_data/json/scrobbles-window.json', JSON.stringify(windowData)) + fs.writeFileSync('./src/_data/json/artists-map.json', JSON.stringify(artistsMap)) + fs.writeFileSync('./src/_data/json/albums-map.json', JSON.stringify(artistsMap)) + fs.writeFileSync('./src/_data/json/now-playing.json', JSON.stringify(artistsMap)) } \ No newline at end of file diff --git a/src/_data/test.js b/src/_data/test.js new file mode 100644 index 00000000..817a5adf --- /dev/null +++ b/src/_data/test.js @@ -0,0 +1,6 @@ +import window from './json/scrobbles-window.js' + +export default async function () { + console.log(window) + return window +}