| 
									
										
										
										
											2020-10-20 11:08:49 +02:00
										 |  |  | /* | 
					
						
							| 
									
										
										
										
											2024-09-24 09:42:07 +02:00
										 |  |  |  * Copyright (c) 2020 - present Cloudogu GmbH | 
					
						
							| 
									
										
										
										
											2020-10-20 11:08:49 +02:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2024-09-24 09:42:07 +02:00
										 |  |  |  * This program is free software: you can redistribute it and/or modify it under | 
					
						
							|  |  |  |  * the terms of the GNU Affero General Public License as published by the Free | 
					
						
							|  |  |  |  * Software Foundation, version 3. | 
					
						
							| 
									
										
										
										
											2020-10-20 11:08:49 +02:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2024-09-24 09:42:07 +02:00
										 |  |  |  * This program is distributed in the hope that it will be useful, but WITHOUT | 
					
						
							|  |  |  |  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS | 
					
						
							|  |  |  |  * FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more | 
					
						
							|  |  |  |  * details. | 
					
						
							| 
									
										
										
										
											2020-10-20 11:08:49 +02:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2024-09-24 09:42:07 +02:00
										 |  |  |  * You should have received a copy of the GNU Affero General Public License | 
					
						
							|  |  |  |  * along with this program. If not, see https://www.gnu.org/licenses/.
 | 
					
						
							| 
									
										
										
										
											2020-10-20 11:08:49 +02:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2024-09-24 09:42:07 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-20 11:08:49 +02:00
										 |  |  | const { spawnSync } = require("child_process"); | 
					
						
							|  |  |  | const os = require("os"); | 
					
						
							| 
									
										
										
										
											2022-06-22 11:49:26 +02:00
										 |  |  | const path = require("path"); | 
					
						
							|  |  |  | const fs = require("fs"); | 
					
						
							| 
									
										
										
										
											2020-10-20 11:08:49 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | const yarnCmd = os.platform() === "win32" ? "yarn.cmd" : "yarn"; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-06-22 11:49:26 +02:00
										 |  |  | const yarn = (args, cwd) => { | 
					
						
							|  |  |  |   const result = spawnSync(yarnCmd, args, { stdio: "inherit", cwd }); | 
					
						
							| 
									
										
										
										
											2020-10-20 11:08:49 +02:00
										 |  |  |   if (result.error) { | 
					
						
							|  |  |  |     console.log("could not start yarn command:", result.error); | 
					
						
							|  |  |  |     process.exit(2); | 
					
						
							|  |  |  |   } else if (result.status !== 0) { | 
					
						
							|  |  |  |     console.log("yarn process ends with status code:", result.status); | 
					
						
							|  |  |  |     process.exit(3); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-10-13 08:15:27 +02:00
										 |  |  | const version = (v) => { | 
					
						
							| 
									
										
										
										
											2020-10-20 11:08:49 +02:00
										 |  |  |   yarn(["version", "--no-git-tag-version", "--new-version", v]); | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-10-13 08:15:27 +02:00
										 |  |  | const publish = (v) => { | 
					
						
							| 
									
										
										
										
											2020-10-20 11:08:49 +02:00
										 |  |  |   yarn(["publish", "--new-version", v]); | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-06-22 11:49:26 +02:00
										 |  |  | const findWorkspaces = () => { | 
					
						
							|  |  |  |   const result = spawnSync(yarnCmd, ["workspaces", "info"]); | 
					
						
							|  |  |  |   return JSON.parse(result.stdout); | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | const updateDependencies = (workspaces, dependencies, v) => { | 
					
						
							|  |  |  |   if (dependencies) { | 
					
						
							| 
									
										
										
										
											2023-10-13 08:15:27 +02:00
										 |  |  |     Object.keys(dependencies).forEach((dep) => { | 
					
						
							| 
									
										
										
										
											2022-06-22 11:49:26 +02:00
										 |  |  |       if (workspaces[dep]) { | 
					
						
							|  |  |  |         dependencies[dep] = v; | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-10-13 08:15:27 +02:00
										 |  |  | const workspaceVersion = (v) => { | 
					
						
							| 
									
										
										
										
											2022-06-22 11:49:26 +02:00
										 |  |  |   const workspaces = findWorkspaces(); | 
					
						
							| 
									
										
										
										
											2023-10-13 08:15:27 +02:00
										 |  |  |   Object.keys(workspaces).forEach((name) => { | 
					
						
							| 
									
										
										
										
											2022-06-22 11:49:26 +02:00
										 |  |  |     const workspace = workspaces[name]; | 
					
						
							|  |  |  |     const packageJsonPath = path.join(process.cwd(), workspace.location, "package.json"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     const packageJson = JSON.parse(fs.readFileSync(packageJsonPath, { encoding: "utf8" })); | 
					
						
							|  |  |  |     packageJson.version = v; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     updateDependencies(workspaces, packageJson.dependencies, v); | 
					
						
							|  |  |  |     updateDependencies(workspaces, packageJson.devDependencies, v); | 
					
						
							|  |  |  |     updateDependencies(workspaces, packageJson.peerDependencies, v); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     fs.writeFileSync(packageJsonPath, JSON.stringify(packageJson, null, 2), { encoding: "utf8" }); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-10-13 08:15:27 +02:00
										 |  |  | const forEachModule = (fn) => { | 
					
						
							| 
									
										
										
										
											2022-06-22 11:49:26 +02:00
										 |  |  |   const workspaces = findWorkspaces(); | 
					
						
							| 
									
										
										
										
											2023-10-13 08:15:27 +02:00
										 |  |  |   Object.keys(workspaces).forEach((name) => { | 
					
						
							| 
									
										
										
										
											2022-06-22 11:49:26 +02:00
										 |  |  |     const workspace = workspaces[name]; | 
					
						
							|  |  |  |     const cwd = path.join(process.cwd(), workspace.location); | 
					
						
							|  |  |  |     const packageJson = JSON.parse(fs.readFileSync(path.join(cwd, "package.json"), { encoding: "utf8" })); | 
					
						
							| 
									
										
										
										
											2023-10-13 08:15:27 +02:00
										 |  |  |     fn(packageJson, cwd); | 
					
						
							| 
									
										
										
										
											2022-06-22 11:49:26 +02:00
										 |  |  |   }); | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-10-13 08:15:27 +02:00
										 |  |  | const workspacePublish = (v) => { | 
					
						
							| 
									
										
										
										
											2022-06-22 11:49:26 +02:00
										 |  |  |   forEachModule((module, cwd) => { | 
					
						
							|  |  |  |     if (!module.private) { | 
					
						
							| 
									
										
										
										
											2023-10-13 08:15:27 +02:00
										 |  |  |       console.log(`publish module ${module.name}`); | 
					
						
							|  |  |  |       yarn(["publish", "--new-version", v], cwd); | 
					
						
							| 
									
										
										
										
											2022-06-22 11:49:26 +02:00
										 |  |  |     } else { | 
					
						
							| 
									
										
										
										
											2023-10-13 08:15:27 +02:00
										 |  |  |       console.log(`skip private module ${module.name}`); | 
					
						
							| 
									
										
										
										
											2022-06-22 11:49:26 +02:00
										 |  |  |     } | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-20 11:08:49 +02:00
										 |  |  | module.exports = { | 
					
						
							|  |  |  |   version, | 
					
						
							|  |  |  |   publish, | 
					
						
							| 
									
										
										
										
											2022-06-22 11:49:26 +02:00
										 |  |  |   yarn, | 
					
						
							|  |  |  |   workspaceVersion, | 
					
						
							| 
									
										
										
										
											2023-10-13 08:15:27 +02:00
										 |  |  |   workspacePublish, | 
					
						
							| 
									
										
										
										
											2020-10-20 11:08:49 +02:00
										 |  |  | }; |