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