UNPKG

beatprints.js

Version:

A Node.js version of the original Python BeatPrints project (https://github.com/TrueMyst/BeatPrints/) by TrueMyst. Create eye-catching, Pinterest-style music posters effortlessly. BeatPrints integrates with Spotify and LRClib API to help you design custom

10 lines (9 loc) 261 B
import { join } from 'node:path'; import { cp } from 'node:fs/promises'; const src = join('src', 'assets'); const dest = join('lib', 'assets'); await cp(src, dest, { recursive: true, force: true }); console.log('[beatprints.js]: Moved assets folder.');