feat(build): implement artifact processor

This commit is contained in:
2026-07-29 21:47:05 +02:00
parent 02a1c2cd02
commit a99603f6c7
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'
});
}
};