mirror of
https://github.com/badlogic/pi-mono.git
synced 2026-08-20 22:23:59 +00:00
7 lines
278 B
JavaScript
7 lines
278 B
JavaScript
import { cp, mkdir } from "node:fs/promises";
|
|
|
|
const source = new URL("../src/sqlite/migrations/", import.meta.url);
|
|
const target = new URL("../dist/sqlite/migrations/", import.meta.url);
|
|
|
|
await mkdir(target, { recursive: true });
|
|
await cp(source, target, { recursive: true });
|