我开始使用Webpack了
我得到它生成组装的js和css文件,并移动img文件
当我运行webpack时,我得到了
pub/bld/
├── css
│ └── common.css
├── img
│ └── image.jpg
└── js
└── common.js
现在我想生成一个manifest.json
我配置了
const ManifestPlugin = require('webpack-manifest-plugin');
module.exports = () => ({
plugins: [
new ManifestPlugin({
fileName: 'manifest.json',
})
]
});
现在,当我运行webpack时,会添加manifest.json
pub/bld/
├── css
│ └── common.css
├── img
│ └── image.jpg
├── js
│ ├── runtime_manifest.js
│ └── common.js
└── manifest.json
对于那些文件,生成了manifest.json
{
"common.css": "css/common.css",
"common.js": "js/common.js",
"runtime_manifest.js": "js/runtime_manifest.js",
"img/image.jpg": "img/image.jpg",
}
我不明白为什么'* .img'文件的清单键有“img /”前缀,但'* .js'和'* .css'键没有。
我想最终得到像这样的东西
{
"css/common.css": "css/common.css",
"js/common.js": "js/main.js",
"js/runtime_manifest.js": "js/runtime_manifest.js",
"img/image.jpg": "img/image.jpg",
}
我想它需要不同的配置。
不知道该怎么做。
我需要在配置中添加或更改什么?
感谢任何帮助!
EDIT1
git clone https://github.com/atown2/wt1
cd wt1
yarn install
rm -rf pub/bld
yarn run w-d
cat pub/bld/manifest.json
{
"common.css": "bld/css/common.css",
"common.js": "bld/js/common.js",
"runtime_manifest.js": "bld/js/runtime_manifest.js",
"vendor.js": "bld/js/vendor.js",
"img/image.jpg": "bld/img/image.jpg"
}
rm -rf pub/bld
yarn run w-p
cat pub/bld/manifest.json
{
"common.css": "bld/css/common.29a2491a64f9fa0bb242.css",
"common.js": "bld/js/common.06c02ae762fab74de1c2.js",
"vendor.js": "bld/js/vendor.f8169ef54a3835cf9193.js",
"runtime_manifest.js": "bld/js/runtime_manifest.f4c47723a9293e3db34d.js",
"img/image.jpg": "bld/img/image.e910e1baeaab6869d39e369296aad8f5.jpg"
}
问题是清单插件根据条目选择名称。要调整,实施map
:
exports.Manifest = () => ({
plugins: [
new WebpackManifest({
fileName: 'manifest.json',
filter: (file) => !file.path.match(/\.map$/),
map: (file) => {
const extension = path.extname(file.name).slice(1)
return {
...file,
name: ['css', 'js'].includes(extension) ?
`${extension}/${file.name}` :
file.name
}
}
})
]
});