Skip to content

Commit 25f3742

Browse files
committed
chore(deps): update dependency rust to v1.82.0
1 parent d942a8d commit 25f3742

File tree

11 files changed

+406
-445
lines changed

11 files changed

+406
-445
lines changed

.github/workflows/ci.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,7 @@ jobs:
121121
runs-on: ubuntu-latest
122122
steps:
123123
- uses: taiki-e/checkout-action@v1
124+
124125
- uses: Boshen/setup-rust@main
125126
with:
126127
cache-key: wasm
@@ -134,7 +135,9 @@ jobs:
134135

135136
- run: just build-wasm debug
136137
- working-directory: npm/oxc-wasm
137-
run: pnpm run check
138+
run: |
139+
sed -i ${{ (runner.os == 'macOS' && '""') || '' }} -e 's/=> Array;/=> number[];/g' oxc_wasm.d.ts
140+
pnpm run check
138141
139142
- working-directory: wasm/parser
140143
run: pnpm run build

.github/workflows/release_wasm.yml

+4
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,10 @@ jobs:
5959
pnpm run build
6060
pnpm run test
6161
62+
- name: Check
63+
working-directory: npm/parser-wasm
64+
run: pnpm run check
65+
6266
- name: Publish
6367
working-directory: npm/parser-wasm
6468
env:

napi/minify/index.d.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
/* auto-generated by NAPI-RS */
22
/* eslint-disable */
3-
export declare function minify(filename: string, sourceText: string): string;
3+
export declare function minify(filename: string, sourceText: string): string
4+

0 commit comments

Comments
 (0)