我认为 parcel v2 不支持开箱即用,但可以使用自定义命名器插件相对轻松地完成
这是一些可以工作的代码:
import { Namer } from "@parcel/plugin";
import path from "path";
export default new Namer({
name({ bundle }) {
if (bundle.type === "html") {
const filePath = bundle.getMainEntry()?.filePath;
if (filePath) {
let baseNameWithoutExtension = path.basename(filePath, path.extname(filePath));
// See: https://parceljs.org/plugin-system/namer/#content-hashing
if (!bundle.needsStableName) {
baseNameWithoutExtension += "." + bundle.hashReference;
}
return `${baseNameWithoutExtension}.htm`;
}
}
// Returning null means parcel will keep the name of non-html bundles the same.
return null;
},
});
在不发布单独包的情况下将此插件与 parcel 挂钩的最简单方法是使用yarn 的链接协议。
您将像这样构建您的项目:
project
├── .parcelrc
├── package.json
├── src
│ └── index.html
└── parcel-namer-htm
├── package.json
└── src
└── HtmNamer.js <-- the code above
您的 mainpackage.json
将链接到您的parcel-namer-htm
文件夹,如下所示:
{
"name": "my-project",
"dependencies": {
"parcel": "^2.0.0",
"parcel-namer-htm": "link:./parcel-transformer-foo"
}
}
您的.parcelrc
文件将如下所示:
{
"extends": "@parcel/config-default",
"namers": ["parcel-namer-htm", "..."]
}
parcel-namer-htm/package.json
看起来像这样:
{
"name": "parcel-namer-htm",
"main": "src/HtmNamer.js",
"engines": {
"node": ">= 12.0.0",
"parcel": "^2.0.0"
},
}