This commit is contained in:
bipproduction
2025-11-17 14:06:55 +08:00
parent 91ca3b4b11
commit 95d7216752
2 changed files with 3 additions and 1 deletions

View File

@@ -81,6 +81,8 @@ async function build() {
console.log("🎉 Build complete!");
}
execSync("git add -A", { stdio: 'inherit' })
execSync("git commit -m 'build'", { stdio: 'inherit' })
execSync("cd src && npm version patch", { stdio: 'inherit' })
build()

View File

@@ -1,3 +1,3 @@
import { execSync } from "child_process";
execSync("npm publish", { stdio: 'inherit' })
execSync("cd dist && npm publish", { stdio: 'inherit' })