@ingcreators/annot-product-docs-astro 0.3.1 → 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 +27 -0
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,32 @@
|
|
|
1
1
|
# @ingcreators/annot-product-docs-astro
|
|
2
2
|
|
|
3
|
+
## 0.4.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 0179c4c: **Astro 7 support** — the `astro` peer range widens from
|
|
8
|
+
`^5.0.0 || ^6.0.0` to `^5.0.0 || ^6.0.0 || ^7.0.0`.
|
|
9
|
+
|
|
10
|
+
No code changes were required: the integration only uses the
|
|
11
|
+
stable `astro:config:setup` hook + `updateConfig({ vite })`,
|
|
12
|
+
and the Image Service (`renderAnnotatedScreen`) is a plain
|
|
13
|
+
build-time renderer with no `astro:assets` dependency, so the
|
|
14
|
+
Astro 7 breaking changes (Vite 8, Rust compiler, Sätteri
|
|
15
|
+
Markdown pipeline) don't touch this package's surface.
|
|
16
|
+
|
|
17
|
+
Astro 5 and 6 consumers are unaffected — the range is purely
|
|
18
|
+
additive. Verified against `astro@7.0.6` +
|
|
19
|
+
`@astrojs/starlight@0.41.2` via the dogfooded
|
|
20
|
+
`@ingcreators/annot-docs-site` build.
|
|
21
|
+
|
|
22
|
+
### Patch Changes
|
|
23
|
+
|
|
24
|
+
- Updated dependencies [b47d896]
|
|
25
|
+
- @ingcreators/annot-core@0.3.1
|
|
26
|
+
- @ingcreators/annot-annotator@0.6.0
|
|
27
|
+
- @ingcreators/annot-playwright@0.4.2
|
|
28
|
+
- @ingcreators/annot-product-docs@0.4.1
|
|
29
|
+
|
|
3
30
|
## 0.3.1
|
|
4
31
|
|
|
5
32
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ingcreators/annot-product-docs-astro",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"description": "Astro integration for `@ingcreators/annot-product-docs`. Wires the MDX components (`<Screen>` / `<Overlay>` / `<Transition>` / `<HistoryEntry>` / `<ScreenList>` / `<TransitionGraph>`) into an Astro site and supplies the Image Service that renders annotated PNGs from `<Screen>` blocks at build time. Phase 2 of docs/plans/living-product-docs.md.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": "ingcreators",
|
|
@@ -59,20 +59,20 @@
|
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
61
61
|
"@playwright/test": "^1.61.1",
|
|
62
|
-
"astro": "^
|
|
62
|
+
"astro": "^7.0.6",
|
|
63
63
|
"typescript": "^6.0.3",
|
|
64
64
|
"vite": "^8.0.16",
|
|
65
65
|
"vite-plugin-dts": "^5.0.3"
|
|
66
66
|
},
|
|
67
67
|
"dependencies": {
|
|
68
|
-
"@ingcreators/annot-core": "0.3.0",
|
|
69
68
|
"@ingcreators/annot-annotator": "0.6.0",
|
|
70
|
-
"@ingcreators/annot-
|
|
71
|
-
"@ingcreators/annot-
|
|
72
|
-
"@ingcreators/annot-
|
|
69
|
+
"@ingcreators/annot-core": "0.3.1",
|
|
70
|
+
"@ingcreators/annot-playwright": "0.4.2",
|
|
71
|
+
"@ingcreators/annot-product-docs": "0.4.1",
|
|
72
|
+
"@ingcreators/annot-embed-protocol": "0.1.0"
|
|
73
73
|
},
|
|
74
74
|
"peerDependencies": {
|
|
75
|
-
"astro": "^5.0.0 || ^6.0.0"
|
|
75
|
+
"astro": "^5.0.0 || ^6.0.0 || ^7.0.0"
|
|
76
76
|
},
|
|
77
77
|
"scripts": {
|
|
78
78
|
"build": "vite build",
|