我如何为不同的输入输出指定不同的filename
?
例如:
module.exports = {
context: path.resolve(__dirname, 'assets'),
entry: {
vendor: ['react', 'react-dom', 'lodash', 'redux'],
app: './src/app.js'
}
output: {
path: path.resolve(__dirname, (isDevelopment) ? 'demo' : 'build'),
filename: (isDevelopment) ? '[name].js' : '[name][chunkhash:12].js'
}
}
接收此类输出
build
-- index.html
-- app.2394035ufas0ue34.js
-- vendor.js
因此浏览器会将vendor.js
缓存到所有库中。因为我不打算很快和经常迁移到任何主要的新版本。
并且仍然能够在每次需要更新的情况下中断app.js
的缓存。
是否有某种选项可将output
设置为
output: {
app: {
...
},
vendor: {
...
},
}
答案 0 :(得分:1)
这是工作代码:
entry: {
'./build/app': './src/app.js',
'./build/vendor': VENDOR_LIBS // or path to your vendor.js
},
output: {
path: __dirname,
filename: '[name].[chunkhash].js'
},
将此代码添加到您的webpack plugins
数组中作为数组的最后一个元素。
plugins: [
... // place our new plugin here
]
function() {
this.plugin("done", function(stats) {
const buildDir = __dirname + '/build/';
const fs = require('fs');
var vendorTempFileName = '';
new Promise(function(resolve, reject) {
fs.readdir(buildDir, (err, files) => {
files.forEach(file => {
if (file.substr(0,6) === 'vendor') {
resolve(file);
}
});
});
}).then(function(file) {
fs.rename( buildDir + file, buildDir + 'vendor.js', function(err) {
if ( err ) console.log('ERROR: ' + err);
});
});
});
}
由于浏览器缓存,将文件保留为没有chunkhashes是不好的做法。
答案 1 :(得分:0)
对于Webpack 4,我添加了一个肮脏的done
钩子来重命名我的服务工作者脚本:
// Plugin to rename sw-[chunkhash].js back to sw.js
class SwNamePlugin {
apply(compiler) {
compiler.hooks.done.tap("SW Name Plugin", (stats) => {
const swChunk = stats.compilation.chunks.find((c) => c.name === "sw");
fs.rename(path.resolve(outDir, swChunk.files[0]), `${outDir}/sw.js`);
});
}
}
plugins.push(new SwNamePlugin());
这避免了您在遵循loelsonk回答后会看到的警告DeprecationWarning: Tapable.plugin is deprecated. Use new API on .hooks instead
。