feat(build): implement artifact processor

This commit is contained in:
2026-07-29 22:25:12 +02:00
parent da6dfe8091
commit 5c1c5fcf55
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'
});
}
};