1.2.6 • Published 4 years ago
@wundero/bytenode-webpack-plugin v1.2.6
@wundero/bytenode-webpack-plugin
Forked from @herberttn/bytenode-webpack-plugin, fixes WebPack 5 issue.
Compile JavaScript into bytecode using bytenode.
Inspired by bytenode-webpack-plugin.
Install
npm install --save @wundero/bytenode-webpack-pluginSupports
electron-forge- :heavy_check_mark: Default configuration
webpack- :heavy_check_mark: v4
- :heavy_check_mark: v5
- :heavy_check_mark:
entryas astring(e.g.,'src/index.js') - :heavy_check_mark:
entryas anarray(e.g.,['src/index.js']) - :heavy_check_mark:
entryas anobject(e.g.,{ main: 'src/index.js' }) - :heavy_check_mark:
entrymiddlewares (e.g.,['src/index.js', 'webpack-hot-middleware/client']) - :heavy_check_mark: Dynamic
output.filename(e.g.,'[name].js') - :heavy_check_mark: Named
output.filename(e.g.,'index.js')
Usage
import { BytenodeWebpackPlugin } from '@wundero/bytenode-webpack-plugin';
// webpack options
module.exports = {
// ...
plugins: [
// using all defaults
new BytenodeWebpackPlugin(),
// overriding an option
new BytenodeWebpackPlugin({
compileForElectron: true,
}),
],
};Options
interface Options {
compileAsModule: boolean; // wraps the code in a node module
compileForElectron: boolean; // compiles for electron instead of plain node
debugLifecycle: boolean; // enables webpack hooks lifecycle logs
debugLogs: boolean; // enables debug logs
keepSource: boolean; // emits the original source files along with the compiled ones
preventSourceMaps: boolean; // prevents source maps from being generated
silent: boolean; // disables all logs, but not errors thrown (overrides debug flags)
}Default options
new BytenodeWebpackPlugin({
compileAsModule: true,
compileForElectron: false,
debugLifecycle: false,
debugLogs: false,
keepSource: false,
preventSourceMaps: true,
silent: false,
})Contributors
1.2.6
4 years ago