webpack-merge-and-include-globally
webpack-merge-and-include-globally copied to clipboard
Merge multiple files (js, css..) and include by running them "as is". Supports minify by custom transform and wildcard paths.
Is it possible to have loader? It would be good to bypass my code through loaders like babel etc. and minification that are already configured, and then just concat the...
Is it possible to get file path of the input file being transformed inside `transform` callback? For my use case, I need to pass the path to babel's `transformSync` method....
I have tried to minify the output of this plugin as it said in transform section of documentation: `files: { 'vendor.js': [...] }, transform: { 'vendor.js': code => require("uglify-js").minify(code).code }`...
Following the minimal example: ``` new MergeIntoSingleFilePlugin({ files: { "vendor.js": [ 'src/assets/vendors/js/vendor.bundle.base.js' ] } }), ``` ``` ``` I get this error when I execute `npm run dev` ``` Error:...
Are there any options to source map back to the pre-concatenated files, so that instead of hitting `vendor.js` when debugging, it maps back to the pre-concatenated source instead.
Bumps [websocket-extensions](https://github.com/faye/websocket-extensions-node) from 0.1.3 to 0.1.4. Changelog Sourced from websocket-extensions's changelog. 0.1.4 / 2020-06-02 Remove a ReDoS vulnerability in the header parser (CVE-2020-7662, reported by Robert McLaughlin) Change license from...
Hi guys, I am using webpack-merge-and-include-globally with 2.1.14 version and I'm merging a couple of node_modules into the one vendor.js file. I'm also using hash: true in config. The problem...
Not able to exclude js files by using regex
Hi, I noticed this doesn't seem to support [hash] during a production build. This would be really useful for us, is there any chance this could be added?
Hello, I'm trying to use this plugin with webpack encore. I can concate JS files with encore webpack config like this: `const MergeIntoSingleFilePlugin = require('webpack-merge-and-include-globally'); .addPlugin( new MergeIntoSingleFilePlugin({ files: {}...