Files
QZMusic_PC/amll-local/packages/docs/scripts/copy-playground.js

6 lines
222 B
JavaScript
Raw Normal View History

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");