Spaces:
Sleeping
Sleeping
File size: 551 Bytes
d07c56c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | import { mkdir, copyFile } from 'node:fs/promises';
import { dirname, resolve } from 'node:path';
const root = resolve(new URL('..', import.meta.url).pathname);
const targets = [
['agent.json', 'dist/agent.json'],
['mcp-config.json', 'dist/mcp-config.json'],
['A2A-CARD.md', 'dist/A2A-CARD.md'],
];
for (const [sourceRelative, targetRelative] of targets) {
const source = resolve(root, sourceRelative);
const target = resolve(root, targetRelative);
await mkdir(dirname(target), { recursive: true });
await copyFile(source, target);
}
|