fix: add repository field to package.jsons (#2032)

This commit is contained in:
Brandon Keiji
2025-06-26 22:36:34 +00:00
committed by GitHub
parent 560905154c
commit d9892ada7f
7 changed files with 64 additions and 3 deletions

View File

@@ -74,3 +74,15 @@ try {
console.error('Error copying README.md:', err);
process.exit(1);
}
// Copy README.md to packages/cli
const rootLicensePath = path.resolve(__dirname, '../LICENSE');
const cliLicensePath = path.resolve(__dirname, '../packages/cli/LICENSE');
try {
fs.copyFileSync(rootLicensePath, cliLicensePath);
console.log('Copied root LICENSE to packages/cli/');
} catch (err) {
console.error('Error copying LICENSE:', err);
process.exit(1);
}