aboutsummaryrefslogtreecommitdiff
path: root/scripts/updateBackgrounds.js
blob: e2c74f2f92bb43e9610c721f80d56ee1d2239c6e (plain)
1
2
3
4
5
6
7
8
9
10
import fs from 'fs'

// read the file names in the backgrounds folder
const backgrounds = fs.readdirSync('static/backgrounds')

await fs.promises.writeFile(
	'src/_backgrounds.json',
	JSON.stringify(backgrounds),
	{ encoding: 'utf8' }
)