Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 522 Bytes

File metadata and controls

28 lines (20 loc) · 522 Bytes

Bitwig Webpack Plugin

Webpack compatibility layer for Bitwig's scripting environment. Requires webpack v5+.

Currently this plugin just adds support for chunking by adding the appropriate ordered load calls to the top of entry files.

Installation

npm install --save-dev bitwig-webpack-plugin

Usage

// webpack.config.js
const BitwigWebpackPlugin = require('bitwig-webpack-plugin');

module.exports = {
    ...
    plugins: [
        new BitwigWebpackPlugin(),
        ...
    ],
    ...
}