@codyswann/lisa 1.33.1 → 1.34.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.
@@ -23,7 +23,11 @@
23
23
  *
24
24
  * Coverage collection is scoped to standard Expo source directories
25
25
  * rather than a catch-all glob, preventing config files, scripts, and
26
- * plugins from distorting coverage numbers.
26
+ * plugins from distorting coverage numbers. The `app/` directory is
27
+ * excluded because Expo Router file-based routing makes those files thin
28
+ * wrappers (8-15 lines) that just re-export feature components.
29
+ * `*View.{ts,tsx}` files are excluded because the Container/View pattern
30
+ * puts all logic in Container files — Views are purely presentational.
27
31
  *
28
32
  * Inheritance chain:
29
33
  * jest.expo.ts (this file)
@@ -100,7 +104,6 @@ export const getExpoJestConfig = ({
100
104
  ],
101
105
  moduleFileExtensions: ["ts", "tsx", "js", "jsx", "json", "node"],
102
106
  collectCoverageFrom: [
103
- "app/**/*.{ts,tsx}",
104
107
  "components/**/*.{ts,tsx}",
105
108
  "config/**/*.{ts,tsx}",
106
109
  "constants/**/*.{ts,tsx}",
@@ -112,6 +115,7 @@ export const getExpoJestConfig = ({
112
115
  "stores/**/*.{ts,tsx}",
113
116
  "types/**/*.{ts,tsx}",
114
117
  "utils/**/*.{ts,tsx}",
118
+ "!**/*View.{ts,tsx}",
115
119
  ...defaultCoverageExclusions,
116
120
  ],
117
121
  coverageThreshold: thresholds,
package/package.json CHANGED
@@ -88,7 +88,7 @@
88
88
  "@isaacs/brace-expansion": "^5.0.1"
89
89
  },
90
90
  "name": "@codyswann/lisa",
91
- "version": "1.33.1",
91
+ "version": "1.34.0",
92
92
  "description": "Claude Code governance framework that applies guardrails, guidance, and automated enforcement to projects",
93
93
  "main": "dist/index.js",
94
94
  "bin": {