chore: debug

This commit is contained in:
Cory Dransfeldt 2024-04-03 20:08:46 -07:00
parent 52f478ee34
commit e3797e7602
No known key found for this signature in database
2 changed files with 10 additions and 5 deletions

View file

@ -8,6 +8,8 @@
[[plugins]]
package = "/plugins/fetch-scrobbles"
[plugins.inputs]
dirOutput = "/src/_data/json"
###
# URLs

View file

@ -1,7 +1,10 @@
import { getStore, setEnvironmentContext } from '@netlify/blobs'
import fs from 'fs'
export const onPreBuild = async ({ constants }) => {
export const onPreBuild = async ({
constants,
inputs: { dirOutput }
}) => {
setEnvironmentContext({
siteID: constants.SITE_ID,
token: constants.NETLIFY_API_TOKEN,
@ -13,8 +16,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(albumsMap))
fs.writeFileSync('/src/_data/json/now-playing.json', JSON.stringify(nowPlaying))
fs.writeFileSync(`${dirOutput}scrobbles-window.json`, JSON.stringify(windowData))
fs.writeFileSync(`${dirOutput}artists-map.json`, JSON.stringify(artistsMap))
fs.writeFileSync(`${dirOutput}albums-map.json`, JSON.stringify(albumsMap))
fs.writeFileSync(`${dirOutput}now-playing.json`, JSON.stringify(nowPlaying))
}