xtask/git/reduce/core_ver.rs
use anyhow::Result;
use clap::Args;
use crate::util::get_commit_for_core_version;
/// Reduce the difference of the versions of `swc_core`s to the list of commits
/// and pull requests.
#[derive(Debug, Args)]
pub(super) struct CoreVerCmd {
from: String,
to: String,
}
impl CoreVerCmd {
pub fn run(self) -> Result<()> {
let from_commit = get_commit_for_core_version(&self.from, false)?;
let to_commit = get_commit_for_core_version(&self.to, true)?;
eprintln!(
"GitHub diff: https://github.com/swc-project/swc/compare/{from_commit}...{to_commit}"
);
Ok(())
}
}