From f3fd479035d67cc7ec41f313cd5474e4ed5bc2ef Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Wed, 3 Apr 2024 20:21:35 -0700 Subject: [PATCH] chore: debug --- src/_data/test.js | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/src/_data/test.js b/src/_data/test.js index e881751b..2a242f4a 100644 --- a/src/_data/test.js +++ b/src/_data/test.js @@ -1,19 +1,19 @@ import fs from 'fs' export default async function () { - // const window = fs.readFileSync('./json/scrobbles-window.json', (error, data) => { - // if (error) { - // console.log(error); - // return; - // } - // return JSON.parse(data) - // }) - // console.log(window) - // return window + const window = fs.readFileSync('./src/_data/json/scrobbles-window.json', (error, data) => { + if (error) { + console.log(error); + return; + } + return JSON.parse(data) + }) + console.log(window) + return window - fs.readdir('./src/_data/json/', (err, files) => { - files.forEach(file => { - console.log(file); - }); - }); + // fs.readdir('./src/_data/json/', (err, files) => { + // files.forEach(file => { + // console.log(file); + // }); + // }); }