feat(build): implement artifact processor

This commit is contained in:
2026-08-01 13:48:24 +02:00
committed by jakob.scheid
parent 07c6e60527
commit 053372cbb6
3 changed files with 89 additions and 3 deletions
+4 -1
View File
@@ -27,7 +27,10 @@ const files = await readdir(dir);
const tryToProcessPlugin = async function tryToProcessPlugin (plugin) {
if (typeof plugin.default === 'function') {
await processPlugin(plugin.default);
await processPlugin(plugin.default, {
srcBase: './src',
distBase: './dist'
});
}
};