CI / Lint (push) Waiting to run
CI / Build Test (stage-web) (push) Waiting to run
CI / Build Test (ui-loading-screens) (push) Waiting to run
CI / Build Test (ui-transitions) (push) Waiting to run
CI / Unit Test (push) Waiting to run
CI / Type Check (push) Waiting to run
CI / Check Provenance (push) Waiting to run
Sync Labels / sync-labels (push) Waiting to run
- Remove stage-tamagotchi, stage-pocket, server, and engine workspaces with their workflows, addons, and docs - Switch the toolchain from pnpm to bun, replace lockfiles with bun.lock - Rewrite remaining product references to Moeka
14 lines
285 B
TypeScript
14 lines
285 B
TypeScript
import { defineConfig } from 'bumpp'
|
|
import { x } from 'tinyexec'
|
|
|
|
export default defineConfig({
|
|
recursive: true,
|
|
commit: 'release: v%s',
|
|
sign: false,
|
|
push: false,
|
|
all: true,
|
|
execute: async () => {
|
|
await x('bun', ['run', 'publish:packages', '--', '--dry-run'])
|
|
},
|
|
})
|