Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update dependency rust to v1.82.0 #6649

Merged
merged 1 commit into from
Nov 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: taiki-e/checkout-action@v1

- uses: Boshen/setup-rust@main
with:
cache-key: wasm
Expand All @@ -134,7 +135,9 @@ jobs:

- run: just build-wasm debug
- working-directory: npm/oxc-wasm
run: pnpm run check
run: |
sed -i ${{ (runner.os == 'macOS' && '""') || '' }} -e 's/=> Array;/=> number[];/g' oxc_wasm.d.ts
pnpm run check

- working-directory: wasm/parser
run: pnpm run build
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/release_wasm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,10 @@ jobs:
pnpm run build
pnpm run test

- name: Check
working-directory: npm/parser-wasm
run: pnpm run check

- name: Publish
working-directory: npm/parser-wasm
env:
Expand Down
3 changes: 2 additions & 1 deletion napi/minify/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* auto-generated by NAPI-RS */
/* eslint-disable */
export declare function minify(filename: string, sourceText: string): string;
export declare function minify(filename: string, sourceText: string): string

Loading
Loading