File size: 16,155 Bytes
1e92f2d |
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 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 |
use std::{env, fs, path::PathBuf, process, str::FromStr};
use owo_colors::OwoColorize;
use rustc_hash::{FxHashMap, FxHashSet};
use semver::{Prerelease, Version};
use serde::{Deserialize, Serialize};
use serde_json::Value;
use crate::command::Command;
const PLATFORM_LINUX_X64: NpmSupportedPlatform = NpmSupportedPlatform {
os: "linux",
arch: "x64",
rust_target: "x86_64-unknown-linux-musl",
};
const PLATFORM_DARWIN_X64: NpmSupportedPlatform = NpmSupportedPlatform {
os: "darwin",
arch: "x64",
rust_target: "x86_64-apple-darwin",
};
const PLATFORM_DARWIN_ARM64: NpmSupportedPlatform = NpmSupportedPlatform {
os: "darwin",
arch: "arm64",
rust_target: "aarch64-apple-darwin",
};
const PLATFORM_WIN32_X64: NpmSupportedPlatform = NpmSupportedPlatform {
os: "win32",
arch: "x64",
rust_target: "x86_64-pc-windows-msvc",
};
const NPM_PACKAGES: &[NpmPackage] = &[NpmPackage {
crate_name: "node-file-trace",
name: "@vercel/experimental-nft",
description: "Node.js module trace",
bin: "node-file-trace",
platform: &[
PLATFORM_LINUX_X64,
PLATFORM_DARWIN_X64,
PLATFORM_DARWIN_ARM64,
PLATFORM_WIN32_X64,
],
}];
struct NpmSupportedPlatform {
os: &'static str,
arch: &'static str,
rust_target: &'static str,
}
struct NpmPackage {
crate_name: &'static str,
name: &'static str,
description: &'static str,
bin: &'static str,
platform: &'static [NpmSupportedPlatform],
}
pub fn run_publish(name: &str) {
if let Some(pkg) = NPM_PACKAGES.iter().find(|p| p.crate_name == name) {
let mut optional_dependencies = Vec::with_capacity(pkg.platform.len());
let mut is_alpha = false;
let mut is_beta = false;
let mut is_canary = false;
let version = if let Ok(release_version) = env::var("RELEASE_VERSION") {
// node-file-trace@1.0.0-alpha.1
let release_tag_version = release_version
.trim()
.trim_start_matches("node-file-trace@");
if let Ok(semver_version) = Version::parse(release_tag_version) {
is_alpha = semver_version.pre.contains("alpha");
is_beta = semver_version.pre.contains("beta");
is_canary = semver_version.pre.contains("canary");
};
release_tag_version.to_owned()
} else {
format!(
"0.0.0-{}",
env::var("GITHUB_SHA")
.map(|mut sha| {
sha.truncate(7);
sha
})
.unwrap_or_else(|_| {
if let Ok(mut o) = process::Command::new("git")
.args(["rev-parse", "--short", "HEAD"])
.output()
.map(|o| String::from_utf8(o.stdout).expect("Invalid utf8 output"))
{
o.truncate(7);
return o;
}
panic!("Unable to get git commit sha");
})
)
};
let tag = if is_alpha {
"alpha"
} else if is_beta {
"beta"
} else if is_canary {
"canary"
} else {
"latest"
};
let current_dir = env::current_dir().expect("Unable to get current directory");
let package_dir = current_dir.join("../../packages").join("node-module-trace");
let temp_dir = package_dir.join("npm");
if let Ok(()) = fs::remove_dir_all(&temp_dir) {};
fs::create_dir(&temp_dir).expect("Unable to create temporary npm directory");
for platform in pkg.platform.iter() {
let bin_file_name = if platform.os == "win32" {
format!("{}.exe", pkg.bin)
} else {
pkg.bin.to_string()
};
let platform_package_name = format!("{}-{}-{}", pkg.name, platform.os, platform.arch);
optional_dependencies.push(platform_package_name.clone());
let pkg_json = serde_json::json!({
"name": platform_package_name,
"version": version,
"description": pkg.description,
"os": [platform.os],
"cpu": [platform.arch],
"bin": {
pkg.bin: bin_file_name
}
});
let dir_name = format!("{}-{}-{}", pkg.crate_name, platform.os, platform.arch);
let target_dir = package_dir.join("npm").join(dir_name);
fs::create_dir(&target_dir)
.unwrap_or_else(|e| panic!("Unable to create dir: {:?}\n{e}", &target_dir));
fs::write(
target_dir.join("../../package.json"),
serde_json::to_string_pretty(&pkg_json).unwrap(),
)
.expect("Unable to write package.json");
let artifact_path = current_dir
.join("artifacts")
.join(format!("node-file-trace-{}", platform.rust_target))
.join(&bin_file_name);
let dist_path = target_dir.join(&bin_file_name);
fs::copy(&artifact_path, &dist_path).unwrap_or_else(|e| {
panic!("Copy file from [{artifact_path:?}] to [{dist_path:?}] failed: {e}")
});
Command::program("npm")
.args(["publish", "--access", "public", "--tag", tag])
.error_message("Publish npm package failed")
.current_dir(target_dir)
.execute();
}
let target_pkg_dir = temp_dir.join(pkg.name);
fs::create_dir_all(&target_pkg_dir).unwrap_or_else(|e| {
panic!("Unable to create target npm directory [{target_pkg_dir:?}]: {e}")
});
let optional_dependencies_with_version = optional_dependencies
.into_iter()
.map(|name| (name, version.clone()))
.collect::<FxHashMap<String, String>>();
let pkg_json_content =
fs::read(package_dir.join("../../package.json")).expect("Unable to read package.json");
let mut pkg_json: Value = serde_json::from_slice(&pkg_json_content).unwrap();
pkg_json["optionalDependencies"] =
serde_json::to_value(optional_dependencies_with_version).unwrap();
fs::write(
target_pkg_dir.join("../../package.json"),
serde_json::to_string_pretty(&pkg_json).unwrap(),
)
.unwrap_or_else(|e| {
panic!(
"Write [{:?}] failed: {e}",
target_pkg_dir.join("../../package.json")
)
});
Command::program("npm")
.args(["publish", "--access", "public", "--tag", tag])
.error_message("Publish npm package failed")
.current_dir(target_pkg_dir)
.execute();
}
}
const VERSION_TYPE: &[&str] = &["patch", "minor", "major", "alpha", "beta", "canary"];
#[derive(Debug, Clone, Serialize, Deserialize)]
struct WorkspaceProjectMeta {
#[serde(default = "default_empty_string")]
name: String,
path: String,
private: bool,
}
fn default_empty_string() -> String {
String::new()
}
#[derive(Debug, Clone, Serialize, Deserialize)]
struct PackageJson {
#[serde(default = "default_empty_string")]
version: String,
#[serde(default = "default_empty_string")]
name: String,
#[serde(default)]
private: bool,
alias: Option<String>,
#[serde(default = "default_empty_string")]
path: String,
}
pub fn run_bump(names: FxHashSet<String>, dry_run: bool) {
let workspaces_list_text = Command::program("pnpm")
.args(["ls", "-r", "--depth", "-1", "--json"])
.error_message("List workspaces failed")
.output_string();
let workspaces = serde_json::from_str::<Vec<WorkspaceProjectMeta>>(workspaces_list_text.trim())
.expect("Unable to parse workspaces list")
.iter()
.filter_map(|workspace| {
let workspace_pkg_json = fs::read_to_string(
env::current_dir()
.unwrap()
.join(&workspace.path)
.join("package.json"),
)
.expect("Read workspace package.json failed");
let mut pkg_json: PackageJson = serde_json::from_str(&workspace_pkg_json)
.expect("Parse workspace package.json failed");
if workspace.name.is_empty() || pkg_json.private {
None
} else {
pkg_json.path.clone_from(&workspace.path);
Some(pkg_json)
}
})
.collect::<Vec<PackageJson>>();
let mut workspaces_to_bump = workspaces
.iter()
.filter(|&p| names.contains(&p.name))
.cloned()
.collect::<Vec<_>>();
if workspaces_to_bump.is_empty() {
fn name_to_title(package: &PackageJson) -> String {
format!(
"{}, current version is {}",
package.name.bright_cyan(),
package.version.bright_green()
)
}
let selector = inquire::MultiSelect::new(
"Select a package to bump",
workspaces.iter().map(name_to_title).collect(),
);
workspaces_to_bump = selector
.prompt()
.expect("Failed to prompt packages")
.iter()
.filter_map(|p| workspaces.iter().find(|w| name_to_title(w) == *p))
.cloned()
.collect();
}
let mut tags_to_apply = Vec::new();
workspaces_to_bump.iter().for_each(|p| {
let title = format!("Version for {}", &p.name);
let selector = inquire::Select::new(title.as_str(), VERSION_TYPE.to_owned());
let version_type = selector.prompt().expect("Get version type failed");
let mut semver_version = Version::parse(&p.version).unwrap_or_else(|e| {
panic!("Failed to parse {} in {} as semver: {e}", p.version, p.name)
});
match version_type {
"major" => {
semver_version.major += 1;
semver_version.minor = 0;
semver_version.patch = 0;
semver_version.pre = Prerelease::EMPTY;
}
"minor" => {
semver_version.minor += 1;
semver_version.patch = 0;
semver_version.pre = Prerelease::EMPTY;
}
"patch" => {
semver_version.patch += 1;
semver_version.pre = Prerelease::EMPTY;
}
"alpha" | "beta" | "canary" => {
if semver_version.pre.is_empty() {
semver_version.patch += 1;
semver_version.pre =
Prerelease::new(format!("{version_type}.0").as_str()).unwrap();
} else {
let mut prerelease_version = semver_version.pre.split('.');
let prerelease_type = prerelease_version
.next()
.expect("prerelease type should exist");
let prerelease_version = prerelease_version
.next()
.expect("prerelease version number should exist");
let mut version_number = prerelease_version
.parse::<u32>()
.expect("prerelease version number should be u32");
if semver_version.pre.contains(version_type) {
version_number += 1;
semver_version.pre =
Prerelease::new(format!("{version_type}.{version_number}").as_str())
.unwrap();
} else {
// eg. current version is 1.0.0-beta.12, bump to 1.0.0-canary.0
if Prerelease::from_str(version_type).unwrap()
> Prerelease::from_str(prerelease_type).unwrap()
{
semver_version.pre =
Prerelease::new(format!("{version_type}.0").as_str()).unwrap();
} else {
panic!(
"Previous version is {prerelease_type}, so you can't bump to \
{version_type}",
);
}
}
}
}
_ => unreachable!(),
}
let semver_version_string = semver_version.to_string();
let version_command_args = vec![
"version",
semver_version_string.as_str(),
"--no-git-tag-version",
"--no-commit-hooks",
];
Command::program("pnpm")
.args(version_command_args)
.current_dir(PathBuf::from(&p.path))
.dry_run(dry_run)
.error_message("Bump version failed")
.execute();
tags_to_apply.push(format!(
"{}@{}",
p.alias.as_ref().unwrap_or(&p.name),
semver_version_string
));
});
Command::program("pnpm")
.args(["install"])
.dry_run(dry_run)
.error_message("Update pnpm-lock.yaml failed")
.execute();
Command::program("git")
.args(["add", "."])
.dry_run(dry_run)
.error_message("Stash git changes failed")
.execute();
let tags_message = tags_to_apply
.iter()
.map(|s| format!("- {s}"))
.collect::<Vec<_>>()
.join("\n");
Command::program("git")
.args([
"commit",
"-m",
"chore: release turbopack npm packages",
"-m",
tags_message.as_str(),
])
.dry_run(dry_run)
.error_message("Stash git changes failed")
.execute();
for tag in tags_to_apply {
Command::program("git")
.dry_run(dry_run)
.args(["tag", "-s", &tag, "-m", &tag])
.error_message("Tag failed")
.execute();
}
}
pub fn publish_workspace(dry_run: bool) {
let commit_message = Command::program("git")
.args(["log", "-1", "--pretty=%B"])
.error_message("Get commit hash failed")
.output_string();
for (pkg_name_without_scope, version) in commit_message
.trim()
.split('\n')
// Skip commit title
.skip(1)
.map(|s| s.trim().trim_start_matches('-').trim())
// Only publish tags match `@vercel/xxx@x.y.z-alpha.n`
.filter(|m| m.starts_with("@vercel/"))
.map(|m| {
let m = m.trim_start_matches("@vercel/");
let mut full_tag = m.split('@');
let pkg_name_without_scope = full_tag.next().unwrap().to_string();
let version = full_tag.next().unwrap().to_string();
(pkg_name_without_scope, version)
})
{
let pkg_name = format!("@vercel/{pkg_name_without_scope}");
let semver_version = Version::from_str(version.as_str())
.unwrap_or_else(|e| panic!("Parse semver version failed {version} {e}"));
let is_alpha = semver_version.pre.contains("alpha");
let is_beta = semver_version.pre.contains("beta");
let is_canary = semver_version.pre.contains("canary");
let tag = {
if is_alpha {
"alpha"
} else if is_beta {
"beta"
} else if is_canary {
"canary"
} else {
"latest"
}
};
let mut args = vec![
"publish",
"--tag",
tag,
"--no-git-checks",
"--filter",
pkg_name.as_str(),
];
if dry_run {
args.push("--dry-run");
}
Command::program("pnpm")
.args(args)
.error_message("Publish failed")
.execute();
}
}
|