@metasession.co/devaudit-cli 0.1.17 → 0.1.18

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@metasession.co/devaudit-cli",
3
- "version": "0.1.17",
3
+ "version": "0.1.18",
4
4
  "description": "DevAudit CLI — installs, syncs, and operates the Metasession SDLC across consumer projects.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -33,7 +33,7 @@
33
33
  },
34
34
  "dependencies": {
35
35
  "@clack/prompts": "^0.8.2",
36
- "@metasession.co/devaudit-plugin-sdk": "^0.1.17",
36
+ "@metasession.co/devaudit-plugin-sdk": "^0.1.18",
37
37
  "commander": "^12.1.0",
38
38
  "consola": "^3.2.3",
39
39
  "env-paths": "^3.0.0",
@@ -347,7 +347,12 @@ jobs:
347
347
  done
348
348
  fi
349
349
  shopt -s nullglob
350
- SHOTS=(ci-evidence/compliance/evidence/*/screenshots/*.png compliance/evidence/*/screenshots/*.png)
350
+ # Only this run's freshly-generated screenshots (from the ci-results
351
+ # artifact). The full pack regenerates them every run, so the committed
352
+ # copies under compliance/evidence/ are redundant here — globbing both
353
+ # uploaded every image twice (deduped on display, but wasteful + rate-limit
354
+ # pressure) and swept in legacy screenshots from unrelated past releases.
355
+ SHOTS=(ci-evidence/compliance/evidence/*/screenshots/*.png)
351
356
  if [ "${#SHOT_REQS[@]}" -gt 0 ] && [ "${#SHOTS[@]}" -gt 0 ]; then
352
357
  echo "Uploading ${#SHOTS[@]} evidence screenshot(s) for: ${SHOT_REQS[*]}"
353
358
  SHOT_TMP="$(mktemp -d)"