chore: debug

This commit is contained in:
Cory Dransfeldt 2024-04-03 18:38:52 -07:00
parent f024e8fbee
commit 2061696fe7
No known key found for this signature in database
3 changed files with 23 additions and 0 deletions

View file

@ -6,6 +6,9 @@
publish = "_site"
edge_functions = "api"
[[plugins]]
package = "/plugins/fetch-scrobbles"
###
# URLs
###

View file

@ -0,0 +1,19 @@
import { getStore } from '@netlify/blobs'
import fs from 'fs'
export const onPreBuild = async () => {
const scrobbles = getStore('scrobbles')
const artists = getStore('artists')
const albums = getStore('albums')
const windowData = await scrobbles.get('window', { type: 'json'})
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'})
console.log(windowData)
fs.writeFileSync('/src/_data/json/scrobbles-window.json', windowData)
fs.writeFileSync('/src/_data/json/artists-map.json', artistsMap)
fs.writeFileSync('/src/_data/json/albums-map.json', albumsMap)
fs.writeFileSync('/src/_data/json/now-playing.json', nowPlaying)
}

View file

@ -0,0 +1 @@
name: netlify-plugin-fetch-scrobbles