@growth-labs/conformance 0.3.0 → 0.3.1
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 +8 -0
- package/package.json +6 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @growth-labs/conformance Changelog
|
|
2
2
|
|
|
3
|
+
## 0.3.1 — 2026-07-17
|
|
4
|
+
|
|
5
|
+
- Mark the `astro` peer dependency as optional (`peerDependenciesMeta.astro.optional: true`).
|
|
6
|
+
Non-Astro tooling consumers are no longer burdened with Astro's native/tooling
|
|
7
|
+
graph during install. The compatible peer range (`^7.1.0`) is retained for Astro
|
|
8
|
+
consumers, and the sole Astro reference in source (`import type { AstroConfig }`)
|
|
9
|
+
remains a type-only import that is erased at compile time.
|
|
10
|
+
|
|
3
11
|
## 0.3.0 — 2026-07-17
|
|
4
12
|
|
|
5
13
|
- Add `buildAstroCspConfig()` for Astro 7.1+ native SHA-256 CSP generation with
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@growth-labs/conformance",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.1",
|
|
4
4
|
"description": "Reusable fleet publication conformance harness for Growth Labs sites: headers, cache, metadata, structured data, images, publication surfaces, and evidence bundles.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -35,6 +35,11 @@
|
|
|
35
35
|
"peerDependencies": {
|
|
36
36
|
"astro": "^7.1.0"
|
|
37
37
|
},
|
|
38
|
+
"peerDependenciesMeta": {
|
|
39
|
+
"astro": {
|
|
40
|
+
"optional": true
|
|
41
|
+
}
|
|
42
|
+
},
|
|
38
43
|
"devDependencies": {
|
|
39
44
|
"@cloudflare/workers-types": "^4.20260402.1",
|
|
40
45
|
"@types/node": "^25.5.0",
|