forked from miao-moe/QZMusic_PC
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");
|