@metasession.co/devaudit-cli 0.1.34 → 0.1.35

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.34",
3
+ "version": "0.1.35",
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.34",
36
+ "@metasession.co/devaudit-plugin-sdk": "^0.1.35",
37
37
  "commander": "^12.1.0",
38
38
  "consola": "^3.2.3",
39
39
  "env-paths": "^3.0.0",
@@ -534,14 +534,7 @@ jobs:
534
534
  # onboard via `devaudit update`.
535
535
  ORIGIN_META=()
536
536
  if [ -f "${PNG}.meta.json" ]; then
537
- ORIGIN=$(python3 -c "
538
- import json, sys
539
- try:
540
- with open('${PNG}.meta.json') as f:
541
- print(json.load(f).get('origin', ''))
542
- except Exception:
543
- pass
544
- " 2>/dev/null || true)
537
+ ORIGIN=$(python3 -c "import json,sys; print(json.load(open(sys.argv[1])).get('origin',''))" "${PNG}.meta.json" 2>/dev/null || true)
545
538
  if [ "$ORIGIN" = "feature" ] || [ "$ORIGIN" = "regression" ]; then
546
539
  ORIGIN_META+=(--meta-key "origin=${ORIGIN}")
547
540
  fi