mirror of
https://github.com/danbulant/oxc
synced 2026-05-21 13:18:59 +00:00
12 lines
213 B
Bash
Executable file
12 lines
213 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
mkdir -p tmp
|
|
pushd tmp
|
|
[ ! -d "vscode" ] && git clone --depth=1 git@github.com:microsoft/vscode.git
|
|
popd
|
|
|
|
pnpm install
|
|
|
|
rm -rf ./tmp/vscode/**/.eslintrc.json
|
|
|
|
cargo build --release -p oxc_cli
|