16 lines
569 B
TypeScript
16 lines
569 B
TypeScript
import * as webpack from "webpack";
|
|
import {RawSourceMap} from "source-map";
|
|
import LoaderContext = webpack.loader.LoaderContext;
|
|
|
|
const wabt = require("wabt")();
|
|
|
|
const filename = "module.wast";
|
|
|
|
export default function loader(this: LoaderContext, source: string | Buffer, sourceMap?: RawSourceMap): string | Buffer | void | undefined {
|
|
this.cacheable();
|
|
|
|
const module = wabt.parseWat(filename, source);
|
|
const { buffer } = module.toBinary({ write_debug_names: false });
|
|
|
|
this.callback(null, `module.exports = new Uint8Array([${buffer.join(",")}]);`);
|
|
} |