fix(workspace,stage-tamagotchi): do publish dry-run check & not marked as private properly

This commit is contained in:
Neko Ayaka
2025-09-11 15:55:08 +08:00
parent dd73845ed3
commit 073035867d
2 changed files with 3 additions and 0 deletions
@@ -2,6 +2,7 @@
"name": "@proj-airi/stage-tamagotchi-electron",
"type": "module",
"version": "0.7.2-beta.3",
"private": true,
"description": "An Electron application with Vue and TypeScript",
"author": "example.com",
"homepage": "https://electron-vite.org",
+2
View File
@@ -13,6 +13,8 @@ export default defineConfig({
push: false,
all: true,
execute: async () => {
await execa('pnpm', ['publish', '-r', '--access', 'public', '--no-git-checks', '--dry-run'])
const cargoTomlFile = await readFile(join(cwd(), 'Cargo.toml'))
const cargoToml = parse(cargoTomlFile.toString('utf-8')) as {
workspace?: {