mirror of
https://github.com/lqtmcstudio/QZMusic_PC.git
synced 2026-06-20 23:35:06 +08:00
6 lines
222 B
JavaScript
6 lines
222 B
JavaScript
|
|
import fs from "node:fs";
|
||
|
|
|
||
|
|
fs.rmSync("dist/playground", { recursive: true, force: true });
|
||
|
|
fs.cpSync("../playground/core/dist", "dist/playground", { recursive: true });
|
||
|
|
console.log("Playground copied to dist/playground");
|