chore: debug
This commit is contained in:
parent
2061696fe7
commit
26e0dad655
1 changed files with 9 additions and 5 deletions
|
@ -1,10 +1,14 @@
|
||||||
import { getStore } from '@netlify/blobs'
|
import { getDeployStore } from '@netlify/blobs'
|
||||||
import fs from 'fs'
|
import fs from 'fs'
|
||||||
|
|
||||||
export const onPreBuild = async () => {
|
export const onPreBuild = async ({ constants }) => {
|
||||||
const scrobbles = getStore('scrobbles')
|
const store = getDeployStore({
|
||||||
const artists = getStore('artists')
|
siteID: constants.SITE_ID,
|
||||||
const albums = getStore('albums')
|
token: constants.NETLIFY_API_TOKEN,
|
||||||
|
});
|
||||||
|
const scrobbles = store.get('scrobbles')
|
||||||
|
const artists = store.get('artists')
|
||||||
|
const albums = store.get('albums')
|
||||||
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' })
|
||||||
|
|
Reference in a new issue