Files
openclaw/scripts/sync-plugin-versions.ts

77 lines
2.2 KiB
TypeScript
Raw Normal View History

2026-01-15 08:32:10 +00:00
import { existsSync, readdirSync, readFileSync, writeFileSync } from "node:fs";
2026-01-15 07:07:42 +00:00
import { join, resolve } from "node:path";
type PackageJson = {
name?: string;
version?: string;
};
const rootPackagePath = resolve("package.json");
const rootPackage = JSON.parse(readFileSync(rootPackagePath, "utf8")) as PackageJson;
const targetVersion = rootPackage.version;
if (!targetVersion) {
throw new Error("Root package.json missing version.");
}
const extensionsDir = resolve("extensions");
const dirs = readdirSync(extensionsDir, { withFileTypes: true }).filter((entry) =>
entry.isDirectory(),
);
2026-01-15 07:07:42 +00:00
const updated: string[] = [];
2026-01-15 08:32:10 +00:00
const changelogged: string[] = [];
2026-01-15 07:07:42 +00:00
const skipped: string[] = [];
2026-01-15 08:32:10 +00:00
function ensureChangelogEntry(changelogPath: string, version: string): boolean {
2026-01-31 21:29:14 +09:00
if (!existsSync(changelogPath)) {
return false;
}
2026-01-15 08:32:10 +00:00
const content = readFileSync(changelogPath, "utf8");
2026-01-31 21:29:14 +09:00
if (content.includes(`## ${version}`)) {
return false;
}
2026-01-30 03:15:10 +01:00
const entry = `## ${version}\n\n### Changes\n- Version alignment with core OpenClaw release numbers.\n\n`;
2026-01-15 08:32:10 +00:00
if (content.startsWith("# Changelog\n\n")) {
const next = content.replace("# Changelog\n\n", `# Changelog\n\n${entry}`);
writeFileSync(changelogPath, next);
return true;
}
const next = `# Changelog\n\n${entry}${content.trimStart()}`;
writeFileSync(changelogPath, `${next}\n`);
return true;
}
2026-01-15 07:07:42 +00:00
for (const dir of dirs) {
const packagePath = join(extensionsDir, dir.name, "package.json");
let pkg: PackageJson;
try {
pkg = JSON.parse(readFileSync(packagePath, "utf8")) as PackageJson;
} catch {
continue;
}
if (!pkg.name) {
skipped.push(dir.name);
continue;
}
2026-01-15 08:32:10 +00:00
const changelogPath = join(extensionsDir, dir.name, "CHANGELOG.md");
if (ensureChangelogEntry(changelogPath, targetVersion)) {
changelogged.push(pkg.name);
}
2026-01-15 07:07:42 +00:00
if (pkg.version === targetVersion) {
skipped.push(pkg.name);
continue;
}
pkg.version = targetVersion;
writeFileSync(packagePath, `${JSON.stringify(pkg, null, 2)}\n`);
updated.push(pkg.name);
}
console.log(
`Synced plugin versions to ${targetVersion}. Updated: ${updated.length}. Changelogged: ${changelogged.length}. Skipped: ${skipped.length}.`,
2026-01-15 07:07:42 +00:00
);