@codyswann/lisa 2.16.1 → 2.16.2
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/expo/copy-overwrite/jest.setup.ts +6 -0
- package/package.json +1 -1
- package/plugins/lisa/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-cdk/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-expo/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-nestjs/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-rails/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-typescript/.claude-plugin/plugin.json +1 -1
|
@@ -82,6 +82,12 @@ jest.mock("expo-router", () => ({
|
|
|
82
82
|
setOptions: jest.fn(),
|
|
83
83
|
})),
|
|
84
84
|
})),
|
|
85
|
+
// Invoke the callback synchronously so screens that rely on it for
|
|
86
|
+
// mount-time effects behave like a focused screen under test.
|
|
87
|
+
useFocusEffect: jest.fn((callback: () => (() => void) | void) => {
|
|
88
|
+
callback();
|
|
89
|
+
}),
|
|
90
|
+
useIsFocused: jest.fn(() => true),
|
|
85
91
|
Link: ({ children }: { children: React.ReactNode }) => children,
|
|
86
92
|
Stack: {
|
|
87
93
|
Screen: () => null,
|
package/package.json
CHANGED
|
@@ -79,7 +79,7 @@
|
|
|
79
79
|
"lodash": ">=4.18.1"
|
|
80
80
|
},
|
|
81
81
|
"name": "@codyswann/lisa",
|
|
82
|
-
"version": "2.16.
|
|
82
|
+
"version": "2.16.2",
|
|
83
83
|
"description": "Claude Code governance framework that applies guardrails, guidance, and automated enforcement to projects",
|
|
84
84
|
"main": "dist/index.js",
|
|
85
85
|
"exports": {
|