
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.
dynamic-dual-import-webpack-plugin
Advanced tools
Makes dual import (js chunk + css chunk) for dynamic import and require.ensure. It works in cooperation with extract-css-chunks-webpack-plugin.
Makes dual import (js chunk + css chunk) for dynamic import and require.ensure.
It works in cooperation with extract-css-chunks-webpack-plugin.
1. Add plugins to webpack.config.js:
var ExtractCssChunksPlugin = require('extract-css-chunks-webpack-plugin');
var DynamicDualImportPlugin = require('dynamic-dual-import-webpack-plugin');
// ...
module.exports = {
plugins: [
// ...
new ExtractCssChunksPlugin({
filename: '[name].css'
}),
new DynamicDualImportPlugin({
cssChunksHashFilename: 'css_chunks_hash.js'
}),
// ...
]
};
2. Add loaders to webpack.plugin.js:
module.exports = {
module: {
rules: [
// ...
{
test: /\.ts$/, // for example
use: [
DynamicDualImportPlugin.loader({
processRequireEnsure: true // if you need process both `import()` and `require.ensure`
// by default only `import()`
}),
{
loader: 'ts-loader'
},
// ...
]
},
// ...
3. Include chunks hash into your html:
<head>
...
<script type="text/javascript" src="/my_public_path/css_chunks_hash.js"></script>
</head>
4. After this import()
and require.ensure
will automatically import both .js and .css chunks.
But format have to be:
import(
/* webpackChunkName: "my-chunk-name" */ // chunk name is mandatory!
'./my-module'
).then((m) => {
m.doSomething();
});
require.ensure([], (require) => {
const m = require('./my-module');
m.doSomething();
}, 'my-chunk-name'); // chunk name is mandatory!
FAQs
Makes dual import (js chunk + css chunk) for dynamic import and require.ensure. It works in cooperation with extract-css-chunks-webpack-plugin.
The npm package dynamic-dual-import-webpack-plugin receives a total of 5 weekly downloads. As such, dynamic-dual-import-webpack-plugin popularity was classified as not popular.
We found that dynamic-dual-import-webpack-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.