Auto merge base into tabbar

This commit is contained in:
GitHub Actions 2025-06-17 10:15:28 +00:00
commit 3eb06627c2

View File

@ -7,6 +7,9 @@ const updatePackageJson = (): Plugin => {
return {
name: 'update-package-json',
async buildStart() {
// 只在生产环境构建时执行
if (process.env.NODE_ENV !== 'production') return
const packageJsonPath = path.resolve(process.cwd(), 'package.json')
try {