@decocms/parity 0.11.16 → 0.12.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.
Files changed (4) hide show
  1. package/AGENTS.md +4 -1
  2. package/CHANGELOG.md +34 -0
  3. package/dist/cli.js +50641 -47097
  4. package/package.json +13 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@decocms/parity",
3
- "version": "0.11.16",
3
+ "version": "0.12.0",
4
4
  "description": "E2E parity validator for site migrations. Compares prod vs cand and reports UI, functional, SEO, visual, and Web Vitals deltas with an LLM-ranked HTML report.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -32,7 +32,14 @@
32
32
  "bin": {
33
33
  "parity": "dist/cli.js"
34
34
  },
35
- "files": ["dist", "scripts/postinstall.cjs", "README.md", "AGENTS.md", "CHANGELOG.md", "LICENSE"],
35
+ "files": [
36
+ "dist",
37
+ "scripts/postinstall.cjs",
38
+ "README.md",
39
+ "AGENTS.md",
40
+ "CHANGELOG.md",
41
+ "LICENSE"
42
+ ],
36
43
  "scripts": {
37
44
  "dev": "bun run --hot src/cli.ts",
38
45
  "build": "bun build src/cli.ts --target=node --outfile=dist/cli.js --external @anthropic-ai/claude-agent-sdk --external @anthropic-ai/sdk --external chalk --external commander --external diff --external open --external ora --external pixelmatch --external playwright --external pngjs --external prettier --external zod && bun run scripts/postbuild.ts",
@@ -83,5 +90,7 @@
83
90
  "publishConfig": {
84
91
  "access": "public"
85
92
  },
86
- "trustedDependencies": ["@biomejs/biome"]
87
- }
93
+ "trustedDependencies": [
94
+ "@biomejs/biome"
95
+ ]
96
+ }