mirror of
https://github.com/danbulant/oxc
synced 2026-05-20 20:58:48 +00:00
2.1 KiB
2.1 KiB
Release Linter
- Test in large codebases
mkdir test-oxc && cd test-oxc
git clone --depth=1 git@github.com:microsoft/vscode.git
git clone --depth=1 git@github.com:getsentry/sentry.git
git clone --depth=1 git@github.com:elastic/kibana.git
git clone --depth=1 git@github.com:toeverything/AFFiNE.git
git clone --depth=1 git@github.com:DefinitelyTyped/DefinitelyTyped.git
# cd to oxc
cargo build --release -p oxc_cli --bin oxlint
# cd to test-oxc and run oxlint on all cloned repos
~/path/to/oxc/target/target/release/oxlint
- push the version commit, e.g.
31600ac8de - clean up the change log
Release crates
Manually edit all versions specified by [workspace.dependencies] in Cargo.toml,
also manually edit each of the crates version.
sed -i '' 's/0.3.0/0.4.0/' Cargo.toml
sed -i '' 's/0.3.0/0.4.0/' crates/oxc/Cargo.toml
sed -i '' 's/0.3.0/0.4.0/' crates/oxc_allocator/Cargo.toml
sed -i '' 's/0.3.0/0.4.0/' crates/oxc_ast/Cargo.toml
sed -i '' 's/0.3.0/0.4.0/' crates/oxc_codegen/Cargo.toml
sed -i '' 's/0.3.0/0.4.0/' crates/oxc_diagnostics/Cargo.toml
sed -i '' 's/0.3.0/0.4.0/' crates/oxc_formatter/Cargo.toml
sed -i '' 's/0.3.0/0.4.0/' crates/oxc_index/Cargo.toml
sed -i '' 's/0.3.0/0.4.0/' crates/oxc_minifier/Cargo.toml
sed -i '' 's/0.3.0/0.4.0/' crates/oxc_parser/Cargo.toml
sed -i '' 's/0.3.0/0.4.0/' crates/oxc_semantic/Cargo.toml
sed -i '' 's/0.3.0/0.4.0/' crates/oxc_span/Cargo.toml
sed -i '' 's/0.3.0/0.4.0/' crates/oxc_syntax/Cargo.toml
sed -i '' 's/0.3.0/0.4.0/' crates/oxc_transformer/Cargo.toml
cargo build
git add .
git commit
just ready
Run the following commands, the order is important.
cargo publish -p oxc_allocator
cargo publish -p oxc_index
cargo publish -p oxc_span
cargo publish -p oxc_syntax
cargo publish -p oxc_ast
cargo publish -p oxc_diagnostics
cargo publish -p oxc_parser
cargo publish -p oxc_semantic
cargo publish -p oxc_formatter
cargo publish -p oxc_transformer
cargo publish -p oxc_codegen
cargo publish -p oxc_minifier
cargo publish -p oxc