@iyulab/canopy-page 0.3.0 → 0.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +12 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,18 @@ Notable changes to canopy-page. The format follows
|
|
|
7
7
|
The `settings.json` contract is what consuming projects plan their upgrades around, so changes
|
|
8
8
|
to it — its fields, its validation, and what the checks reject — are what this file is about.
|
|
9
9
|
|
|
10
|
+
## [0.4.0] — 2026-08-08
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- **Upgraded to canopy 0.4.0.** A site's on-page outline now stays pinned to the viewport while
|
|
15
|
+
scrolling, matching the sidebar, and every page fits a narrow screen without scrolling
|
|
16
|
+
horizontally — both fixes apply automatically on the next build, no `settings.json` field
|
|
17
|
+
changed. Canopy also gained `--search-index`, which canopy-page does not call yet — a site
|
|
18
|
+
built with this version carries no search index or search UI. See
|
|
19
|
+
[canopy's changelog](https://github.com/iyulab/canopy/blob/main/CHANGELOG.md#040--2026-08-08)
|
|
20
|
+
for the full set of changes.
|
|
21
|
+
|
|
10
22
|
## [0.3.0] — 2026-08-08
|
|
11
23
|
|
|
12
24
|
### Changed
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@iyulab/canopy-page",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"description": "Authoring pipeline for documentation sites: one settings file, integrity checks, and a build.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -49,6 +49,6 @@
|
|
|
49
49
|
"vitest": "^4.1.9"
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
|
-
"@iyulab/canopy": "^0.
|
|
52
|
+
"@iyulab/canopy": "^0.4.0"
|
|
53
53
|
}
|
|
54
54
|
}
|