Skip to content

Commit 938b222

Browse files
committed
chore: release v0.9.5
1 parent 64a21cb commit 938b222

52 files changed

Lines changed: 106 additions & 204 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

bump.config.ts

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,16 @@
1+
import process from 'node:process'
12
import { defineConfig } from 'bumpp'
3+
import { x } from 'tinyexec'
24
import { syncStarterVersion } from './scripts/sync-starter-version.ts'
35

46
export default defineConfig({
7+
all: true,
58
// `starter/` pins real `devframe`/`@devframes/*` versions (it's a
69
// copy-paste-ready template, not a workspace member consuming
710
// `catalog:`/`workspace:*`), so `bumpp -r` can't reach it on its own -
811
// sync it here, before the version-bump commit is made.
9-
execute: operation => syncStarterVersion(operation.state.newVersion),
12+
execute: async (operation) => {
13+
await syncStarterVersion(operation.state.newVersion)
14+
await x('pnpm', ['install', '--frozen-lockfile=false'], { nodeOptions: { stdio: 'inherit', cwd: process.cwd() } })
15+
},
1016
})

examples/a11y-messages-playground/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "a11y-messages-playground",
33
"type": "module",
4-
"version": "0.9.4",
4+
"version": "0.9.5",
55
"private": true,
66
"description": "Hub playground that pairs the a11y and messages plugins over a demo app full of accessibility issues.",
77
"homepage": "https://github.com/devframes/devframe/tree/main/examples/a11y-messages-playground",

examples/demo-dock-client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "demo-dock-client",
33
"type": "module",
4-
"version": "0.9.4",
4+
"version": "0.9.5",
55
"private": true,
66
"description": "Reference dock client script for the hub examples: bare npm imports and globalThis-anchored shared state.",
77
"homepage": "https://github.com/devframes/devframe/tree/main/examples/demo-dock-client",

examples/files-inspector/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "files-inspector-example",
33
"type": "module",
4-
"version": "0.9.4",
4+
"version": "0.9.5",
55
"private": true,
66
"description": "Devframe demo that lists files in the working directory over RPC across the dev and build surfaces.",
77
"homepage": "https://github.com/devframes/devframe/tree/main/examples/files-inspector",

examples/hub-deno-minimal/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "hub-deno-minimal",
33
"type": "module",
4-
"version": "0.9.4",
4+
"version": "0.9.5",
55
"private": true,
66
"description": "Minimal Deno host that serves the devframe hub over a fetch-upgrade WebSocket.",
77
"scripts": {

examples/hub-fastify-minimal/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "hub-fastify-minimal",
33
"type": "module",
4-
"version": "0.9.4",
4+
"version": "0.9.5",
55
"private": true,
66
"description": "Minimal Fastify host that mounts the devframe hub with nodeMiddleware.",
77
"scripts": {

examples/hub-hono-minimal/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "hub-hono-minimal",
33
"type": "module",
4-
"version": "0.9.4",
4+
"version": "0.9.5",
55
"private": true,
66
"description": "Minimal Hono host that serves the devframe hub namespace on both Node and Bun.",
77
"scripts": {

examples/hub-next-minimal/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "hub-next-minimal",
33
"type": "module",
4-
"version": "0.9.4",
4+
"version": "0.9.5",
55
"private": true,
66
"description": "Minimal Next.js host that mounts the devframe hub on a single App Router route.",
77
"homepage": "https://github.com/devframes/devframe/tree/main/examples/hub-next-minimal",

examples/hub-next/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "hub-next",
33
"type": "module",
4-
"version": "0.9.4",
4+
"version": "0.9.5",
55
"private": true,
66
"description": "Next.js reference hub that exercises every devframe hub subsystem end to end.",
77
"homepage": "https://github.com/devframes/devframe/tree/main/examples/hub-next",

examples/hub-nitro-minimal/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "hub-nitro-minimal",
33
"type": "module",
4-
"version": "0.9.4",
4+
"version": "0.9.5",
55
"private": true,
66
"description": "Minimal Nitro host that mounts the devframe hub on a single route.",
77
"scripts": {

0 commit comments

Comments
 (0)