
Product
Announcing Socket Fix 2.0
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
webpack-concat-plugin
Advanced tools
A plugin to help webpack concat js and inject into html
Webpack is really powerful. However, when I want to concat the static files and inject into html without webpack JSONP code wrapper, it seems impossible to do that without other tool's help.
npm install webpack-concat-plugin --save-dev
for webpack >= 4.0
npm install webpack-concat-plugin@3.0.0 --save-dev
const ConcatPlugin = require('webpack-concat-plugin');
new ConcatPlugin({
...see options
// examples
uglify: false,
sourceMap: false,
name: 'result',
outputPath: 'path/to/output/',
fileName: '[name].[hash:8].js',
filesToConcat: ['jquery', './src/lib/**', './dep/dep.js', ['./some/**', '!./some/excludes/**']],
attributes: {
async: true
}
});
if true the output file will be uglified
or set uglifyjs options to customize the output
if true, will output sourcemap
it's useful when you want to inject to html-webpack-plugin manully
if set, will be used as the public path of the script tag.
if set to false, will use relativePath.
if set, will be used as the output directory of the file.
if set, will be used as the output fileName
supported path patterns:
how to auto inject to html-webpack-plugin(only if html-webpack-plugin set inject option not to be false)
if set, will be used as the extra attributes of the script tag.
doctype html
...
script(src=htmlWebpackPlugin.files.webpackConcat.flexible)
...
FAQs
Webpack file concatenation.
The npm package webpack-concat-plugin receives a total of 8,012 weekly downloads. As such, webpack-concat-plugin popularity was classified as popular.
We found that webpack-concat-plugin demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
Security News
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.
Product
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.