forked from elizaOS/eliza
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupdate-versions.js
148 lines (130 loc) · 4.33 KB
/
update-versions.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
const fs = require("fs");
const path = require("path");
const readline = require("readline");
const { execSync } = require("child_process");
const packagesDir = path.join(__dirname, "../packages");
const externalDirs = ["../agent", "../client", "../docs"];
const lernaPath = path.join(__dirname, "../lerna.json");
// Simple Logger
function log(level, message) {
const timestamp = new Date()
.toISOString()
.split("T")
.join(" ")
.slice(0, 19);
console.log(`${timestamp} [${level.toUpperCase()}]: ${message}`);
}
// Helper to simplify file path for logs
function simplifyPath(filePath) {
const relativePath = path.relative(path.join(__dirname, ".."), filePath);
return `/${relativePath.replace(/\\/g, "/")}`;
}
// Prompt for version input
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout,
});
function askVersion() {
return new Promise((resolve) => {
rl.question("Enter the new version: ", (version) => {
resolve(version);
rl.close();
});
});
}
function runPrettier(filePaths) {
try {
execSync(`npx prettier --write ${filePaths.join(" ")}`, {
stdio: "ignore",
});
log("info", `Formatted ${filePaths.length} files with Prettier.`);
} catch (error) {
log("error", `Failed to format files with Prettier: ${error.message}`);
}
}
// Update versions in all package.json files
async function updateVersions() {
const NEW_VERSION = await askVersion();
log("info", `Starting version update process to ${NEW_VERSION}.`);
const updatedFiles = [];
const updateDirectory = (dirPath) => {
const packagePath = path.join(dirPath, "package.json");
if (fs.existsSync(packagePath)) {
const packageJson = JSON.parse(
fs.readFileSync(packagePath, "utf-8")
);
const oldVersion = packageJson.version;
if (oldVersion) {
packageJson.version = NEW_VERSION;
fs.writeFileSync(
packagePath,
JSON.stringify(packageJson, null, 2) + "\n"
);
log(
"info",
`Updated ${simplifyPath(packagePath)}: ${oldVersion} -> ${packageJson.version}`
);
updatedFiles.push(packagePath);
} else {
log(
"warn",
`Version not found in ${simplifyPath(packagePath)}`
);
}
} else {
log(
"warn",
`No package.json found in ${simplifyPath(packagePath)}`
);
}
};
// Update packages folder
if (fs.existsSync(packagesDir)) {
const packageDirs = fs.readdirSync(packagesDir);
packageDirs.forEach((dir) =>
updateDirectory(path.join(packagesDir, dir))
);
} else {
log("warn", `Packages directory not found at ${packagesDir}`);
}
// Update external folders
externalDirs.forEach((dir) => {
const fullPath = path.join(__dirname, dir);
if (fs.existsSync(fullPath)) {
updateDirectory(fullPath);
} else {
log(
"warn",
`External directory not found: ${simplifyPath(fullPath)}`
);
}
});
// Update lerna.json
if (fs.existsSync(lernaPath)) {
const lernaJson = JSON.parse(fs.readFileSync(lernaPath, "utf-8"));
const oldVersion = lernaJson.version;
if (oldVersion) {
lernaJson.version = NEW_VERSION;
fs.writeFileSync(
lernaPath,
JSON.stringify(lernaJson, null, 2) + "\n"
);
log(
"info",
`Updated ${simplifyPath(lernaPath)}: ${oldVersion} -> ${lernaJson.version}`
);
updatedFiles.push(lernaPath);
} else {
log("warn", `Version not found in ${simplifyPath(lernaPath)}`);
}
} else {
log("warn", `lerna.json not found at ${lernaPath}`);
}
if (updatedFiles.length > 0) {
runPrettier(updatedFiles);
} else {
log("info", "No files updated, skipping Prettier formatting.");
}
log("info", "Version update process completed.");
}
updateVersions();