Include weekly report and other prototype sources with project tooling config. Co-authored-by: Cursor <cursoragent@cursor.com>
116 lines
3.6 KiB
JavaScript
116 lines
3.6 KiB
JavaScript
#!/usr/bin/env node
|
|
|
|
import fs from 'node:fs';
|
|
import path from 'node:path';
|
|
|
|
function normalizeSlashes(input) {
|
|
return String(input || '').replace(/\\/g, '/');
|
|
}
|
|
|
|
function sanitizeName(rawName) {
|
|
return String(rawName || '')
|
|
.replace(/[^a-z0-9-]/gi, '-')
|
|
.replace(/-+/g, '-')
|
|
.replace(/^-|-$/g, '')
|
|
.toLowerCase();
|
|
}
|
|
|
|
function parseArgs(argv) {
|
|
const args = [...argv];
|
|
const projectDirArg = args.shift();
|
|
const outputNameArg = args.shift();
|
|
let targetType = 'prototypes';
|
|
let projectRoot = process.cwd();
|
|
let outputBaseDir = '';
|
|
|
|
for (let index = 0; index < args.length; index += 1) {
|
|
const arg = args[index];
|
|
if (arg === '--target-type') {
|
|
targetType = String(args[index + 1] || '').trim();
|
|
index += 1;
|
|
} else if (arg === '--project-root') {
|
|
projectRoot = path.resolve(args[index + 1] || projectRoot);
|
|
index += 1;
|
|
} else if (arg === '--output-base-dir') {
|
|
outputBaseDir = path.resolve(args[index + 1] || '');
|
|
index += 1;
|
|
}
|
|
}
|
|
|
|
if (!projectDirArg) throw new Error('Missing project directory');
|
|
const outputName = sanitizeName(outputNameArg || path.basename(projectDirArg));
|
|
if (!outputName) throw new Error('Missing valid output name');
|
|
return {
|
|
projectDir: path.resolve(projectRoot, projectDirArg),
|
|
outputName,
|
|
targetType,
|
|
projectRoot,
|
|
outputBaseDir: outputBaseDir || path.resolve(projectRoot, 'src', targetType),
|
|
};
|
|
}
|
|
|
|
function copyDirectory(src, dest) {
|
|
if (!fs.existsSync(src)) return 0;
|
|
fs.mkdirSync(dest, { recursive: true });
|
|
let count = 0;
|
|
for (const entry of fs.readdirSync(src, { withFileTypes: true })) {
|
|
if (entry.name === 'node_modules' || entry.name === '.next') continue;
|
|
const srcPath = path.join(src, entry.name);
|
|
const destPath = path.join(dest, entry.name);
|
|
if (entry.isDirectory()) count += copyDirectory(srcPath, destPath);
|
|
else if (entry.isFile()) {
|
|
fs.copyFileSync(srcPath, destPath);
|
|
count += 1;
|
|
}
|
|
}
|
|
return count;
|
|
}
|
|
|
|
function ensureIndex(outputDir) {
|
|
const indexPath = path.join(outputDir, 'index.tsx');
|
|
if (!fs.existsSync(indexPath)) {
|
|
fs.writeFileSync(indexPath, [
|
|
"import React from 'react';",
|
|
'',
|
|
'export default function ImportedV0Prototype() {',
|
|
' return <div data-import-source="v0">V0 import requires AI conversion.</div>;',
|
|
'}',
|
|
'',
|
|
].join('\n'), 'utf8');
|
|
}
|
|
}
|
|
|
|
function main() {
|
|
const parsed = parseArgs(process.argv.slice(2));
|
|
if (!fs.existsSync(path.join(parsed.projectDir, 'app'))) {
|
|
throw new Error('这不是一个有效的 V0 项目(缺少 app/ 目录)');
|
|
}
|
|
const outputDir = path.join(parsed.outputBaseDir, parsed.outputName);
|
|
fs.rmSync(outputDir, { recursive: true, force: true });
|
|
fs.mkdirSync(parsed.outputBaseDir, { recursive: true });
|
|
const fileCount = copyDirectory(parsed.projectDir, outputDir);
|
|
ensureIndex(outputDir);
|
|
const taskPath = path.join(outputDir, parsed.targetType === 'themes' ? '.v0-theme-tasks.md' : '.v0-tasks.md');
|
|
fs.writeFileSync(taskPath, [
|
|
'# V0 项目转换任务清单',
|
|
'',
|
|
'> 请先阅读 `rules/v0-project-converter.md` 和 `rules/development-guide.md`,再基于该目录完成原型转换。',
|
|
'',
|
|
`- 输出目录:\`${normalizeSlashes(path.relative(parsed.projectRoot, outputDir))}/\``,
|
|
`- 已复制文件数:${fileCount}`,
|
|
'',
|
|
].join('\n'), 'utf8');
|
|
console.log(JSON.stringify({
|
|
success: true,
|
|
outputDir,
|
|
tasksFile: normalizeSlashes(path.relative(parsed.projectRoot, taskPath)),
|
|
}));
|
|
}
|
|
|
|
try {
|
|
main();
|
|
} catch (error) {
|
|
console.error(error?.message || String(error));
|
|
process.exit(1);
|
|
}
|