mirror of
https://github.com/penpot/penpot.git
synced 2026-04-26 11:48:28 +00:00
6 lines
177 B
JavaScript
6 lines
177 B
JavaScript
import { cpSync } from "fs";
|
|
|
|
// copy static assets and data to dist
|
|
cpSync("src/static", "dist/static", { recursive: true });
|
|
cpSync("data", "dist/data", { recursive: true });
|