From c2c6d00220c742527d7d10ed7f1f2eaf0bd17540 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Wed, 3 Apr 2024 18:49:58 -0700 Subject: [PATCH] chore: debug --- plugins/fetch-scrobbles/index.js | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/plugins/fetch-scrobbles/index.js b/plugins/fetch-scrobbles/index.js index 1c9b26f5..7d3cf55e 100644 --- a/plugins/fetch-scrobbles/index.js +++ b/plugins/fetch-scrobbles/index.js @@ -1,16 +1,16 @@ -import { getDeployStore } from '@netlify/blobs' +import { getStore } from '@netlify/blobs' import fs from 'fs' -export const onPreBuild = async ({ constants }) => { - const scrobbles = store.get('scrobbles', { +export const onPreBuild = async ({ context }) => { + const scrobbles = getStore('scrobbles', { siteID: constants.SITE_ID, token: constants.NETLIFY_API_TOKEN, }) - const artists = store.get('artists', { + const artists = getStore('artists', { siteID: constants.SITE_ID, token: constants.NETLIFY_API_TOKEN, }) - const albums = store.get('albums', { + const albums = getStore('albums', { siteID: constants.SITE_ID, token: constants.NETLIFY_API_TOKEN, }) @@ -19,7 +19,8 @@ export const onPreBuild = async ({ constants }) => { const albumsMap = await albums.get('albums-map', { type: 'json' }) const nowPlaying = await scrobbles.get('now-playing', { type: 'json'}) - console.log(windowData) + console.log(artistsMap) + console.log(albumsMap) fs.writeFileSync('/src/_data/json/scrobbles-window.json', windowData) fs.writeFileSync('/src/_data/json/artists-map.json', artistsMap)