Initial commit

This commit is contained in:
2025-04-07 00:13:16 +08:00
commit c8c57db729
22 changed files with 2219 additions and 0 deletions

11
script/clear.ts Normal file
View File

@@ -0,0 +1,11 @@
import fs from 'fs';
import path from 'path';
export const root = process.cwd();
export const clearWorkspace = () => {
const files = ['submodules', 'packages', 'pnpm-workspace.yaml', 'turbo.json'];
for (const file of files) {
fs.rmSync(path.join(root, file), { recursive: true, force: true });
}
};