chore: debug

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

View file

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

View file

@ -1,10 +1,7 @@
import { getStore, setEnvironmentContext } from '@netlify/blobs'
import fs from 'fs'
export const onPreBuild = async ({
constants,
inputs: { dirOutput }
}) => {
export const onPreBuild = async ({ constants }) => {
setEnvironmentContext({
siteID: constants.SITE_ID,
token: constants.NETLIFY_API_TOKEN,
@ -16,8 +13,8 @@ export const onPreBuild = async ({
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(`${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))
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))
}