@codyswann/lisa 1.56.2 → 1.56.4

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.
@@ -129,7 +129,7 @@ jobs:
129
129
  uses: CodySwannGT/lisa/.github/workflows/quality.yml@main
130
130
  with:
131
131
  node_version: '22.21.1'
132
- package_manager: 'bun'
132
+ package_manager: 'npm'
133
133
  secrets:
134
134
  SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
135
135
  SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
@@ -54,7 +54,7 @@ jobs:
54
54
  generate_sbom: true
55
55
  override_blackout: true
56
56
  node_version: '22.21.1'
57
- package_manager: 'bun'
57
+ package_manager: 'npm'
58
58
  secrets:
59
59
  DEPLOY_KEY: ${{ secrets.DEPLOY_KEY }}
60
60
  RELEASE_SIGNING_KEY: ${{ secrets.RELEASE_SIGNING_KEY }}
@@ -9,10 +9,25 @@
9
9
  * Thin wrapper around @codyswann/lisa slow eslint config factory.
10
10
  * Run periodically via `lint:slow` rather than on every lint pass.
11
11
  *
12
+ * Adds a NestJS-specific override to disable `import/no-cycle` for module
13
+ * files, since NestJS uses `forwardRef()` to handle circular module
14
+ * dependencies at runtime.
15
+ *
12
16
  * @see https://github.com/import-js/eslint-plugin-import
13
17
  * @module eslint.slow.config
14
18
  */
15
19
  import { getSlowConfig } from "@codyswann/lisa/eslint/slow";
16
20
  import ignoreConfig from "./eslint.ignore.config.json" with { type: "json" };
17
21
 
18
- export default getSlowConfig({ ignorePatterns: ignoreConfig.ignores || [] });
22
+ export default [
23
+ ...getSlowConfig({ ignorePatterns: ignoreConfig.ignores || [] }),
24
+
25
+ // NestJS modules use forwardRef() to resolve circular dependencies at runtime.
26
+ // ESLint's static import/no-cycle analysis cannot understand this pattern.
27
+ {
28
+ files: ["**/*.module.ts"],
29
+ rules: {
30
+ "import/no-cycle": "off",
31
+ },
32
+ },
33
+ ];
package/package.json CHANGED
@@ -72,7 +72,7 @@
72
72
  "axios": ">=1.13.5"
73
73
  },
74
74
  "name": "@codyswann/lisa",
75
- "version": "1.56.2",
75
+ "version": "1.56.4",
76
76
  "description": "Claude Code governance framework that applies guardrails, guidance, and automated enforcement to projects",
77
77
  "main": "dist/index.js",
78
78
  "exports": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lisa",
3
- "version": "1.56.2",
3
+ "version": "1.56.4",
4
4
  "description": "Universal governance — agents, skills, commands, hooks, and rules for all projects",
5
5
  "author": {
6
6
  "name": "Cody Swann"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lisa-cdk",
3
- "version": "1.56.2",
3
+ "version": "1.56.4",
4
4
  "description": "AWS CDK-specific plugin",
5
5
  "author": {
6
6
  "name": "Cody Swann"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lisa-expo",
3
- "version": "1.56.2",
3
+ "version": "1.56.4",
4
4
  "description": "Expo/React Native-specific skills, agents, rules, and MCP servers",
5
5
  "author": {
6
6
  "name": "Cody Swann"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lisa-nestjs",
3
- "version": "1.56.2",
3
+ "version": "1.56.4",
4
4
  "description": "NestJS-specific skills (GraphQL, TypeORM)",
5
5
  "author": {
6
6
  "name": "Cody Swann"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lisa-rails",
3
- "version": "1.56.2",
3
+ "version": "1.56.4",
4
4
  "description": "Ruby on Rails-specific skills, rules, and conventions",
5
5
  "author": {
6
6
  "name": "Cody Swann"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lisa-typescript",
3
- "version": "1.56.2",
3
+ "version": "1.56.4",
4
4
  "description": "TypeScript-specific hooks — Prettier formatting, ESLint linting, and ast-grep scanning on edit",
5
5
  "author": {
6
6
  "name": "Cody Swann"