mirror of
https://github.com/danbulant/oxc
synced 2026-05-19 20:28:58 +00:00
12 lines
208 B
Bash
Executable file
12 lines
208 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
mkdir -p tmp
|
|
pushd tmp
|
|
[ ! -d "webpack" ] && git clone --depth=1 git@github.com:webpack/webpack.git
|
|
popd
|
|
|
|
npm install
|
|
|
|
rm -rf ./tmp/webpack/.eslintrc.js
|
|
|
|
cargo build --release -p oxc_cli
|