Skip to content

Commit

Permalink
Release oxlint and vscode extension v0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Boshen committed Jan 6, 2024
1 parent 7261587 commit 3a6d986
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release_vscode.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,21 +99,21 @@ jobs:
run: rustup target add ${{ matrix.target }}

- name: Build with cross
run: cross build -p oxc_vscode --release --target=${{ matrix.target }}
run: cross build -p oxc_language_server --release --target=${{ matrix.target }}

- name: Copy binary
if: runner.os == 'Windows'
run: |
mkdir -p editors/vscode/target/release
# .vscodeignore uses `!target/release/oxc_vscode` to package the binary
cp target/${{ matrix.target }}/release/oxc_vscode.exe editors/vscode/target/release/oxc_vscode.exe
cp target/${{ matrix.target }}/release/oxc_language_server.exe editors/vscode/target/release/oxc_vscode.exe
- name: Copy binary
if: runner.os != 'Windows'
run: |
mkdir -p editors/vscode/target/release/
# .vscodeignore uses `!target/release/oxc_vscode.exe` to package the binary
cp target/${{ matrix.target }}/release/oxc_vscode editors/vscode/target/release/oxc_vscode
cp target/${{ matrix.target }}/release/oxc_language_server editors/vscode/target/release/oxc_vscode
- name: Package Extension
working-directory: editors/vscode
Expand Down
2 changes: 1 addition & 1 deletion editors/vscode/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "oxc-vscode",
"description": "oxc vscode extension",
"license": "MIT",
"version": "0.0.22",
"version": "0.1.0",
"icon": "icon.png",
"publisher": "oxc",
"displayName": "Oxc",
Expand Down
2 changes: 1 addition & 1 deletion npm/oxlint/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "oxlint",
"version": "0.0.22",
"version": "0.1.0",
"description": "Linter for the JavaScript Oxidation Compiler",
"keywords": [],
"author": "Boshen and oxc contributors",
Expand Down

0 comments on commit 3a6d986

Please sign in to comment.