diff --git a/docs/release_notes.md b/docs/release_notes.md index 887a885..49baf97 100644 --- a/docs/release_notes.md +++ b/docs/release_notes.md @@ -4,6 +4,7 @@ * Revised internal error handling by relaying exception in `parse()`, `transform()`, `transpile()` * Enhanced logging in rust lib +* Supported Android ## 0.11.0 diff --git a/rust/README.md b/rust/README.md index 3dee5c0..25840f8 100644 --- a/rust/README.md +++ b/rust/README.md @@ -10,8 +10,6 @@ This doc is a guide to how to build this library. Follow the [Cross-compilation](https://rust-lang.github.io/rustup/cross-compilation.html) to add the following [supported platforms](https://doc.rust-lang.org/nightly/rustc/platform-support.html). -Note: The Android build hasn't been implemented yet. - ```sh # 64-bit MSVC (Windows 10+) rustup target add x86_64-pc-windows-msvc diff --git a/scripts/ts/copy_swc4j_lib.ts b/scripts/ts/copy_swc4j_lib.ts index dac9ed0..e3eb2d3 100644 --- a/scripts/ts/copy_swc4j_lib.ts +++ b/scripts/ts/copy_swc4j_lib.ts @@ -23,7 +23,7 @@ deno run --allow-all scripts/ts/copy_swc4j_lib.ts -o macos -a arm64 deno run --allow-all scripts/ts/copy_swc4j_lib.ts -d -o macos -a arm64 */ -import * as flags from "https://deno.land/std/flags/mod.ts"; +import * as cli from "https://deno.land/std/cli/mod.ts"; import * as fs from "https://deno.land/std/fs/mod.ts"; import * as path from "https://deno.land/std/path/mod.ts"; @@ -136,7 +136,7 @@ function copy( return 0; } -const args = flags.parse(Deno.args, { +const args = cli.parseArgs(Deno.args, { alias: { arch: "a", debug: "d",