Skip to content

Commit 0730358

Browse files
committed
fix(workspace,stage-tamagotchi): do publish dry-run check & not marked as private properly
1 parent dd73845 commit 0730358

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

apps/stage-tamagotchi-electron/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"name": "@proj-airi/stage-tamagotchi-electron",
33
"type": "module",
44
"version": "0.7.2-beta.3",
5+
"private": true,
56
"description": "An Electron application with Vue and TypeScript",
67
"author": "example.com",
78
"homepage": "https://electron-vite.org",

bump.config.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ export default defineConfig({
1313
push: false,
1414
all: true,
1515
execute: async () => {
16+
await execa('pnpm', ['publish', '-r', '--access', 'public', '--no-git-checks', '--dry-run'])
17+
1618
const cargoTomlFile = await readFile(join(cwd(), 'Cargo.toml'))
1719
const cargoToml = parse(cargoTomlFile.toString('utf-8')) as {
1820
workspace?: {

0 commit comments

Comments
 (0)