Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changeset/fix-symlinked-cli-direct-run.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/multiple-docs-source-mounts.md

This file was deleted.

15 changes: 0 additions & 15 deletions .changeset/optimize-dependencies.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/replace-fast-glob-with-tinyglobby.md

This file was deleted.

11 changes: 11 additions & 0 deletions apps/c15t-example/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# c15t-example

## 0.0.1

### Patch Changes

- Updated dependencies [92192a7]
- Updated dependencies [60c285c]
- Updated dependencies [1bca5cf]
- Updated dependencies [3e03d9d]
- leadtype@0.1.1
2 changes: 1 addition & 1 deletion apps/c15t-example/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "c15t-example",
"version": "0.0.0",
"version": "0.0.1",
"private": true,
"type": "module",
"scripts": {
Expand Down
20 changes: 20 additions & 0 deletions packages/leadtype/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# leadtype

## 0.1.1

### Patch Changes

- 92192a7: Fix the CLI direct-run check so package-manager bin shims and symlinked workspace installs correctly run `leadtype generate`.
- 60c285c: Add first-class support for multiple docs source folders and custom URL mounts, including mounted search, LLM, and Agent Readability metadata. The generate command also expands include partials before emitting markdown artifacts, and extracted type tables resolve source paths from the original project root in multi-source builds.
- 1bca5cf: Shrink published install closure by swapping out heavier deps:

- `gray-matter` → `vfile-matter` + `yaml` (drops `js-yaml`, `kind-of`, `section-matter`, `strip-bom-string` from the closure).
- `jiti` moved from `dependencies` to optional `peerDependencies` — only required when authoring `docs.config.ts`; `.js`/`.mjs`/`.cjs` configs load via native `import()`.
- `decode-named-character-reference` dropped — entity decode inside `<Steps>` titles now uses a small inline map.
- `mdast-util-to-markdown` dropped in `prompt.remark` — serialization now goes through the existing `remark()` processor.
- `mdast-util-compact` dropped in `steps.remark` — small in-tree adjacent-text/blockquote merge inlined.
- `unist-builder` dropped — `u(...)` calls replaced with mdast object literals.
- `unist-util-is` dropped — 7 `is(node, "type")` call sites switched to `node.type === "type"`.

Behavior change: YAML frontmatter timestamps now round-trip through the `yaml` package's timestamp tag. Date-only scalars like `2026-04-19` emit as `2026-04-19` (compact) instead of `2026-04-19T00:00:00.000Z`. Datetime scalars without sub-second precision emit as `2026-04-19T12:00:00` instead of `2026-04-19T12:00:00.000Z`. The values remain `Date` instances in JS, so consuming code is unaffected.

- 3e03d9d: Replace `fast-glob` with `tinyglobby` to shrink the dependency tree (16 transitive deps → 3) and reduce install footprint (~1.2 MB → ~240 KB). Globbing behavior and call-site options are unchanged.

## 0.1.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/leadtype/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "leadtype",
"version": "0.1.0",
"version": "0.1.1",
"description": "Framework-neutral docs pipeline tooling for MDX, LLM bundles, and search",
"type": "module",
"license": "MIT",
Expand Down