From 79a57e27890bc27eeb2494d87050031a06cfb7bb Mon Sep 17 00:00:00 2001 From: Thomas Steiner Date: Fri, 26 Jan 2024 13:16:44 +0100 Subject: [PATCH] Add `wasm-metadce` to tools list --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index a59e15ec217..9f67af6f54c 100644 --- a/README.md +++ b/README.md @@ -226,6 +226,8 @@ This repository contains code that builds the following tools in `bin/` (see the * **`wasm-merge`**: Merges multiple wasm files into a single file, connecting corresponding imports to exports as it does so. Like a bundler for JS, but for wasm. + * **`wasm-metadce`**: A tool to remove parts of Wasm files in a flexible way + * that depends on how the module is used. * **`binaryen.js`**: A standalone JavaScript library that exposes Binaryen methods for [creating and optimizing Wasm modules](https://github.com/WebAssembly/binaryen/blob/main/test/binaryen.js/hello-world.js). For builds, see [binaryen.js on npm](https://www.npmjs.com/package/binaryen) (or download it directly from [GitHub](https://raw.githubusercontent.com/AssemblyScript/binaryen.js/master/index.js) or [unpkg](https://unpkg.com/binaryen@latest/index.js)). Minimal requirements: Node.js v15.8 or Chrome v75 or Firefox v78. All of the Binaryen tools are deterministic, that is, given the same inputs you should always get the same outputs. (If you see a case that behaves otherwise, please file an issue.)