Skip to content
This repository has been archived by the owner on Jul 31, 2018. It is now read-only.

Latest commit

 

History

History
42 lines (32 loc) · 916 Bytes

README.md

File metadata and controls

42 lines (32 loc) · 916 Bytes

rust-plugin

Rust plugin for Webpack

Installation

yarn add rust-plugin

Options

name description
debug Enable debug mode
profiling Enable profiling mode
wasmopt.level configure wasm-opt optimization level (default z)
wasmopt.required throw if the binary is not available (default false: warn)
wasmsnip.snipRustPanickingCode Snip Rust's std::panicking and core::panicking code
wasmsnip.snipRustFmtCode Snip Rust's std::fmt and core::fmt code
wasmsnip.functions Snip any function that matches the given regular expression or a string

Example

const RustPlugin = require("rust-plugin");

module.exports = {
  entry: "./index.js",
  plugins: [
    new RustPlugin({
        debug: true,
        profiling: false,
        wasmopt: {
            level: '0'
        }
    })
  ]
};