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

wasm-tool/rust-plugin

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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'
        }
    })
  ]
};

About

Rust plugin for Webpack

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published