@codyswann/lisa 2.19.0 → 2.19.1
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 +2 -2
- package/plugins/lisa/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa/.codex-plugin/plugin.json +1 -1
- package/plugins/lisa-cdk/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-cdk/.codex-plugin/plugin.json +1 -1
- package/plugins/lisa-expo/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-expo/.codex-plugin/plugin.json +1 -1
- package/plugins/lisa-nestjs/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-nestjs/.codex-plugin/plugin.json +1 -1
- package/plugins/lisa-rails/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-rails/.codex-plugin/plugin.json +1 -1
- package/plugins/lisa-typescript/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-typescript/.codex-plugin/plugin.json +1 -1
- package/rails/copy-overwrite/lefthook.yml +5 -1
package/package.json
CHANGED
|
@@ -80,7 +80,7 @@
|
|
|
80
80
|
"lodash": ">=4.18.1"
|
|
81
81
|
},
|
|
82
82
|
"name": "@codyswann/lisa",
|
|
83
|
-
"version": "2.19.
|
|
83
|
+
"version": "2.19.1",
|
|
84
84
|
"description": "Claude Code governance framework that applies guardrails, guidance, and automated enforcement to projects",
|
|
85
85
|
"main": "dist/index.js",
|
|
86
86
|
"exports": {
|
|
@@ -193,7 +193,7 @@
|
|
|
193
193
|
"vitest": "^4.1.0"
|
|
194
194
|
},
|
|
195
195
|
"devDependencies": {
|
|
196
|
-
"@codyswann/lisa": "^
|
|
196
|
+
"@codyswann/lisa": "^2.19.0",
|
|
197
197
|
"@types/js-yaml": "^4.0.9",
|
|
198
198
|
"eslint-plugin-oxlint": "^1.62.0",
|
|
199
199
|
"js-yaml": "^4.1.1",
|
|
@@ -5,7 +5,11 @@ pre-commit:
|
|
|
5
5
|
glob: '*.rb'
|
|
6
6
|
run: bundle exec rubocop --force-exclusion {staged_files}
|
|
7
7
|
bundler-audit:
|
|
8
|
-
|
|
8
|
+
# Unset GIT_DIR/GIT_WORK_TREE so `--update`'s internal git pull of the
|
|
9
|
+
# ruby-advisory-db (~/.local/share/ruby-advisory-db) does not inherit the
|
|
10
|
+
# repo's git context. Without this, the command fails when the hook runs
|
|
11
|
+
# inside a git worktree (the inherited GIT_DIR points at the wrong repo).
|
|
12
|
+
run: env -u GIT_DIR -u GIT_WORK_TREE bundle exec bundler-audit check --update
|
|
9
13
|
|
|
10
14
|
commit-msg:
|
|
11
15
|
commands:
|