Skip to content

Commit 7dbdcd6

Browse files
chore(repo): version packages (#70)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent e3b8c86 commit 7dbdcd6

17 files changed

+80
-43
lines changed

.changeset/consolidate-build-command.md

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

.changeset/fix-orphaned-workspace-sidebar.md

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

.changeset/fix-recursive-workspace-glob.md

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

.changeset/hide-branch-tag-master.md

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

packages/cli/CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,26 @@
11
# @zpress/cli
22

3+
## 0.6.0
4+
5+
### Minor Changes
6+
7+
- 3e5f014: feat(packages/cli): consolidate sync and generate commands into build
8+
9+
The `build` command now runs content sync and asset generation automatically.
10+
The standalone `sync` and `generate` commands have been removed.
11+
12+
### Patch Changes
13+
14+
- 1e966e1: Fix workspace include resolution for `apps` and `packages` items:
15+
- Use deep glob pattern (`docs/**/*.md`) as default include when `recursive: true`. Previously the default was always `docs/*.md` regardless of the flag.
16+
- Add config check warning when an explicit include pattern already starts with the basePath derived from `path`, which causes double-prefixing and silently matches zero files. Surfaces during `zpress check` before the build step.
17+
18+
- Updated dependencies [e3b8c86]
19+
- Updated dependencies [1e966e1]
20+
- Updated dependencies [0113fb1]
21+
- @zpress/core@0.8.1
22+
- @zpress/ui@0.8.8
23+
324
## 0.5.4
425

526
### Patch Changes

packages/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@zpress/cli",
3-
"version": "0.5.4",
3+
"version": "0.6.0",
44
"description": "CLI for building and serving zpress documentation sites",
55
"keywords": [
66
"cli",

packages/cli/src/lib/check.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,11 @@ export function runConfigCheck(params: RunConfigCheckParams): ConfigCheckResult
8080
return { passed: false, errors: [loadError], warnings: [] }
8181
}
8282
if (!config) {
83-
return { passed: false, errors: [configError('empty_sections', 'Config is missing')], warnings: [] }
83+
return {
84+
passed: false,
85+
errors: [configError('empty_sections', 'Config is missing')],
86+
warnings: [],
87+
}
8488
}
8589
const warnings = checkWorkspaceIncludes(config)
8690
return { passed: true, errors: [], warnings }

packages/config/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# @zpress/config
22

3+
## 0.5.1
4+
5+
### Patch Changes
6+
7+
- 1e966e1: Fix workspace include resolution for `apps` and `packages` items:
8+
- Use deep glob pattern (`docs/**/*.md`) as default include when `recursive: true`. Previously the default was always `docs/*.md` regardless of the flag.
9+
- Add config check warning when an explicit include pattern already starts with the basePath derived from `path`, which causes double-prefixing and silently matches zero files. Surfaces during `zpress check` before the build step.
10+
311
## 0.5.0
412

513
### Minor Changes

packages/config/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@zpress/config",
3-
"version": "0.5.0",
3+
"version": "0.5.1",
44
"description": "Configuration loading and validation for zpress",
55
"keywords": [
66
"config",

packages/core/CHANGELOG.md

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

3+
## 0.8.1
4+
5+
### Patch Changes
6+
7+
- e3b8c86: Fix multi-sidebar routing for workspace children whose paths live outside the parent prefix. When `packages` items use paths like `/libs/ai` instead of `/packages/ai`, Rspress prefix matching could not find a sidebar key — the sidebar silently disappeared. Extra sidebar keys are now emitted for orphaned child paths so they resolve correctly.
8+
- 1e966e1: Fix workspace include resolution for `apps` and `packages` items:
9+
- Use deep glob pattern (`docs/**/*.md`) as default include when `recursive: true`. Previously the default was always `docs/*.md` regardless of the flag.
10+
- Add config check warning when an explicit include pattern already starts with the basePath derived from `path`, which causes double-prefixing and silently matches zero files. Surfaces during `zpress check` before the build step.
11+
12+
- Updated dependencies [1e966e1]
13+
- @zpress/config@0.5.1
14+
315
## 0.8.0
416

517
### Minor Changes

0 commit comments

Comments
 (0)