feat(config): add post-release event file

This commit is contained in:
2023-12-16 18:32:29 +02:00
parent 357036d029
commit 4c60f62e72
5 changed files with 35 additions and 0 deletions

7
.rczrc.postrelease.js Normal file
View File

@@ -0,0 +1,7 @@
const { execSync } = require("child_process");
execSync(`git push -u origin --tags`);
execSync(`pnpm run build`);
execSync(`pnpm publish`);