Skip to content

Commit 308696c

Browse files
chore: version packages (#27)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent b85d4a1 commit 308696c

9 files changed

Lines changed: 40 additions & 22 deletions

File tree

.changeset/dual-conditional-exports.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

.changeset/restructure-docker-release-pipeline.md

Lines changed: 0 additions & 12 deletions
This file was deleted.

host/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# host
22

3+
## 1.3.0
4+
5+
### Minor Changes
6+
7+
- b666191: Restructure Docker build and release pipeline
8+
9+
- **Multi-stage Docker build** excludes `packages/` from the final image. The builder stage resolves `workspace:*` refs to npm versions (via `scripts/resolve-workspace-refs.ts`), installs from npm, then the final stage copies only app code + node_modules.
10+
- **Release pipeline** is now a single sequential job: npm publish gates Zephyr deploy and Docker build. If npm publish fails, nothing else runs.
11+
- **Start command** uses `bos start` (binary from npm) instead of `bun packages/everything-dev/cli.js`. Account and domain are read from `bos.config.json`.
12+
- **`everything-dev` and `every-plugin`** moved to `dependencies` in root `package.json` (runtime deps in Docker).
13+
- **`docker.yml`** is now `workflow_dispatch` only — the release workflow builds Docker inline.
14+
315
## 1.2.0
416

517
### Minor Changes

host/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "host",
3-
"version": "1.2.0",
3+
"version": "1.3.0",
44
"private": true,
55
"type": "module",
66
"scripts": {

packages/every-plugin/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# every-plugin
22

3+
## 2.2.0
4+
5+
### Minor Changes
6+
7+
- 5edf2fa: Rewrite package exports to dual conditional format (`development` → source, default → dist). Add `buildEverythingDevQuietly()` to CLI to ensure dist is built before workspace builds. Add missing tsdown entries for `every-plugin/orpc/client` and `every-plugin/orpc/openapi`. Add `prepublishOnly` and `customConditions: ["development"]` to all consumer tsconfigs. Move re-exported `@orpc/*` packages to `peerDependencies` in `every-plugin`.
8+
39
## 2.1.0
410

511
### Minor Changes

packages/every-plugin/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "every-plugin",
3-
"version": "2.1.0",
3+
"version": "2.2.0",
44
"type": "module",
55
"publishConfig": {
66
"access": "public"

packages/everything-dev/CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# everything-dev
22

3+
## 1.3.0
4+
5+
### Minor Changes
6+
7+
- 5edf2fa: Rewrite package exports to dual conditional format (`development` → source, default → dist). Add `buildEverythingDevQuietly()` to CLI to ensure dist is built before workspace builds. Add missing tsdown entries for `every-plugin/orpc/client` and `every-plugin/orpc/openapi`. Add `prepublishOnly` and `customConditions: ["development"]` to all consumer tsconfigs. Move re-exported `@orpc/*` packages to `peerDependencies` in `every-plugin`.
8+
- b666191: Restructure Docker build and release pipeline
9+
10+
- **Multi-stage Docker build** excludes `packages/` from the final image. The builder stage resolves `workspace:*` refs to npm versions (via `scripts/resolve-workspace-refs.ts`), installs from npm, then the final stage copies only app code + node_modules.
11+
- **Release pipeline** is now a single sequential job: npm publish gates Zephyr deploy and Docker build. If npm publish fails, nothing else runs.
12+
- **Start command** uses `bos start` (binary from npm) instead of `bun packages/everything-dev/cli.js`. Account and domain are read from `bos.config.json`.
13+
- **`everything-dev` and `every-plugin`** moved to `dependencies` in root `package.json` (runtime deps in Docker).
14+
- **`docker.yml`** is now `workflow_dispatch` only — the release workflow builds Docker inline.
15+
16+
### Patch Changes
17+
18+
- Updated dependencies [5edf2fa]
19+
- every-plugin@2.2.0
20+
321
## 1.2.0
422

523
### Minor Changes

packages/everything-dev/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "everything-dev",
3-
"version": "1.2.0",
3+
"version": "1.3.0",
44
"type": "module",
55
"publishConfig": {
66
"access": "public"

ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
"@types/node": "catalog:",
7878
"@types/react": "catalog:",
7979
"@types/react-dom": "catalog:",
80-
"every-plugin": "2.1.0",
80+
"every-plugin": "2.2.0",
8181
"everything-dev": "workspace:*",
8282
"host": "workspace:*",
8383
"jsdom": "^27.2.0",

0 commit comments

Comments
 (0)