chore: Монорепо с общими пакетами

This commit is contained in:
2026-03-04 16:31:57 +03:00
parent 8f2c799235
commit 915c56351b
420 changed files with 13403 additions and 7071 deletions

View File

@@ -0,0 +1,12 @@
import { cpSync, existsSync, mkdirSync } from "node:fs";
import { dirname, resolve } from "node:path";
const source = resolve("src/styles/tach-typography.css");
const destination = resolve("dist/styles.css");
if (!existsSync(source)) {
throw new Error(`Styles file not found: ${source}`);
}
mkdirSync(dirname(destination), { recursive: true });
cpSync(source, destination);