cortex-recombiner-webpack-plugin

a webpack plugin for recombining cortex package

Usage no npm install needed!

<script type="module">
  import cortexRecombinerWebpackPlugin from 'https://cdn.skypack.dev/cortex-recombiner-webpack-plugin';
</script>

README

cortex-recombiner-webpack-plugin

a webpack plugin for recombine cortex package

install

npm i cortex-recombiner-webpack-plugin

webpack.config.js

var CortexRecombinerPlugin=require("cortex-recombiner-webpack-plugin");
module.exports = {
    entry:{
        ...
    },
    ...
    output:{
        ...
    }
    ...,
    
    plugins:[
        new CortexRecombinerPlugin({
            base:__dirname
        });
    ]
}