browserify-webpack-plugin 1
Simple, yet comprehensive webpack plugin to bundle almost any javascript/typescript project for modern browsers.
Level of support is the union of both Webpack2 and Browserify3 shims, in addition to the following features:
This plugin also takes care of selectively applying these shims and properly initialize their respective libraries.
Usage
This plugin uses Webpack's "Extends" feature
in its configuration. This allows you more flexibility in how you configure your project.
npm install --save-dev browserify-webpack-plugin
const path = require("path");
module.exports = {
extends: require.resolve("browserify-webpack-plugin"),
mode: "development",
entry: "./index.js",
output: {
path: path.resolve(__dirname, "dist"),
filename: "bundle.js",
},
};
The plugin accepts a few command line arguments:
--env include**="<pathOrGlob>"
where **
may be optionally repeated with different values to form an array and self document what is being included next to the bundle.--env exclude**="<pathOrGlob>"
where **
may be optionally substituted just like above, these patterns will be excluded from the emitted memory asset.--env memory="<unique>"
where <unique>
is mem.zip
by default. This is wasabio
's starter memory archive.--env listen="<address>"
where <address>
is localhost:8080
by default. This is fakettp
's starter address.--env docker="<image>"
where <image>
is Latest Debian Slim
by default. This is brocess
's starter container.
Example invocation in your repository after extending this package in your webpack.config.js
:
webpack --env includeSrc='mods/*' --env includeIndex='index.js' --env exclude='tty.ts'