chore: debug

This commit is contained in:
Cory Dransfeldt 2024-04-03 18:47:45 -07:00
parent 26e0dad655
commit e60e548aa9
No known key found for this signature in database

View file

@ -2,13 +2,18 @@ import { getDeployStore } from '@netlify/blobs'
import fs from 'fs' import fs from 'fs'
export const onPreBuild = async ({ constants }) => { export const onPreBuild = async ({ constants }) => {
const store = getDeployStore({ const scrobbles = store.get('scrobbles', {
siteID: constants.SITE_ID, siteID: constants.SITE_ID,
token: constants.NETLIFY_API_TOKEN, token: constants.NETLIFY_API_TOKEN,
}); })
const scrobbles = store.get('scrobbles') const artists = store.get('artists', {
const artists = store.get('artists') siteID: constants.SITE_ID,
const albums = store.get('albums') token: constants.NETLIFY_API_TOKEN,
})
const albums = store.get('albums', {
siteID: constants.SITE_ID,
token: constants.NETLIFY_API_TOKEN,
})
const windowData = await scrobbles.get('window', { type: 'json'}) const windowData = await scrobbles.get('window', { type: 'json'})
const artistsMap = await artists.get('artists-map', { type: 'json' }) const artistsMap = await artists.get('artists-map', { type: 'json' })
const albumsMap = await albums.get('albums-map', { type: 'json' }) const albumsMap = await albums.get('albums-map', { type: 'json' })