chore: debug
This commit is contained in:
parent
52f478ee34
commit
e3797e7602
2 changed files with 10 additions and 5 deletions
|
@ -8,6 +8,8 @@
|
||||||
|
|
||||||
[[plugins]]
|
[[plugins]]
|
||||||
package = "/plugins/fetch-scrobbles"
|
package = "/plugins/fetch-scrobbles"
|
||||||
|
[plugins.inputs]
|
||||||
|
dirOutput = "/src/_data/json"
|
||||||
|
|
||||||
###
|
###
|
||||||
# URLs
|
# URLs
|
||||||
|
|
|
@ -1,7 +1,10 @@
|
||||||
import { getStore, setEnvironmentContext } from '@netlify/blobs'
|
import { getStore, setEnvironmentContext } from '@netlify/blobs'
|
||||||
import fs from 'fs'
|
import fs from 'fs'
|
||||||
|
|
||||||
export const onPreBuild = async ({ constants }) => {
|
export const onPreBuild = async ({
|
||||||
|
constants,
|
||||||
|
inputs: { dirOutput }
|
||||||
|
}) => {
|
||||||
setEnvironmentContext({
|
setEnvironmentContext({
|
||||||
siteID: constants.SITE_ID,
|
siteID: constants.SITE_ID,
|
||||||
token: constants.NETLIFY_API_TOKEN,
|
token: constants.NETLIFY_API_TOKEN,
|
||||||
|
@ -13,8 +16,8 @@ export const onPreBuild = async ({ constants }) => {
|
||||||
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' })
|
||||||
const nowPlaying = await scrobbles.get('now-playing', { type: 'json'})
|
const nowPlaying = await scrobbles.get('now-playing', { type: 'json'})
|
||||||
fs.writeFileSync('/src/_data/json/scrobbles-window.json', JSON.stringify(windowData))
|
fs.writeFileSync(`${dirOutput}scrobbles-window.json`, JSON.stringify(windowData))
|
||||||
fs.writeFileSync('/src/_data/json/artists-map.json', JSON.stringify(artistsMap))
|
fs.writeFileSync(`${dirOutput}artists-map.json`, JSON.stringify(artistsMap))
|
||||||
fs.writeFileSync('/src/_data/json/albums-map.json', JSON.stringify(albumsMap))
|
fs.writeFileSync(`${dirOutput}albums-map.json`, JSON.stringify(albumsMap))
|
||||||
fs.writeFileSync('/src/_data/json/now-playing.json', JSON.stringify(nowPlaying))
|
fs.writeFileSync(`${dirOutput}now-playing.json`, JSON.stringify(nowPlaying))
|
||||||
}
|
}
|
Reference in a new issue