@codyswann/lisa 1.54.6 → 1.54.8

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.
@@ -1,3 +1,5 @@
1
1
  {
2
- "extends": ["@codyswann/lisa/tsconfig/cdk", "./tsconfig.local.json"]
2
+ "extends": ["@codyswann/lisa/tsconfig/cdk", "./tsconfig.local.json"],
3
+ "include": ["lib/**/*", "bin/**/*", "test/**/*"],
4
+ "exclude": ["node_modules", "cdk.out"]
3
5
  }
@@ -1,4 +1 @@
1
- {
2
- "include": ["lib/**/*", "bin/**/*", "test/**/*"],
3
- "exclude": ["node_modules", "cdk.out"]
4
- }
1
+ {}
@@ -14,7 +14,7 @@
14
14
  "source-map-support": "^0.5.21"
15
15
  },
16
16
  "devDependencies": {
17
- "@codyswann/lisa": "^1.49.0",
17
+ "@codyswann/lisa": "^1.54.6",
18
18
  "aws-cdk": "^2.1104.0"
19
19
  },
20
20
  "bin": {
@@ -1,3 +1,5 @@
1
1
  {
2
- "extends": ["@codyswann/lisa/tsconfig/expo", "./tsconfig.local.json"]
2
+ "extends": ["@codyswann/lisa/tsconfig/expo", "./tsconfig.local.json"],
3
+ "include": ["**/*.ts", "**/*.tsx", "nativewind-env.d.ts"],
4
+ "exclude": ["node_modules", "dist", "web-build", "components/ui"]
3
5
  }
@@ -113,7 +113,7 @@
113
113
  "devDependencies": {
114
114
  "@babel/core": "^7.20.0",
115
115
  "@babel/plugin-proposal-export-namespace-from": "^7.18.9",
116
- "@codyswann/lisa": "^1.49.0",
116
+ "@codyswann/lisa": "^1.54.6",
117
117
  "@graphql-codegen/cli": "^6.1.0",
118
118
  "@graphql-codegen/typescript": "^4.1.6",
119
119
  "@graphql-codegen/typescript-operations": "^4.4.2",
@@ -1,3 +1,5 @@
1
1
  {
2
- "extends": ["@codyswann/lisa/tsconfig/nestjs", "./tsconfig.local.json"]
2
+ "extends": ["@codyswann/lisa/tsconfig/nestjs", "./tsconfig.local.json"],
3
+ "include": ["src/**/*"],
4
+ "exclude": ["node_modules", ".build", "dist", "**/*.test.ts", "**/*.spec.ts"]
3
5
  }
@@ -64,7 +64,7 @@
64
64
  "typeorm-naming-strategies": "^4.1.0"
65
65
  },
66
66
  "devDependencies": {
67
- "@codyswann/lisa": "^1.49.0",
67
+ "@codyswann/lisa": "^1.54.6",
68
68
  "@graphql-codegen/cli": "^6.1.0",
69
69
  "@graphql-codegen/typescript": "^4.1.6",
70
70
  "@graphql-codegen/typescript-operations": "^4.4.2",
package/package.json CHANGED
@@ -72,7 +72,7 @@
72
72
  "axios": ">=1.13.5"
73
73
  },
74
74
  "name": "@codyswann/lisa",
75
- "version": "1.54.6",
75
+ "version": "1.54.8",
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": {
@@ -171,7 +171,7 @@
171
171
  "typescript-eslint": "^8.0.0"
172
172
  },
173
173
  "devDependencies": {
174
- "@codyswann/lisa": "^1.53.4"
174
+ "@codyswann/lisa": "^1.54.6"
175
175
  },
176
176
  "type": "module"
177
177
  }
@@ -3,6 +3,5 @@
3
3
  "compilerOptions": {
4
4
  "noEmit": false,
5
5
  "outDir": "dist"
6
- },
7
- "exclude": ["node_modules", "dist", "**/*.test.ts", "**/*.spec.ts"]
6
+ }
8
7
  }
package/tsconfig/cdk.json CHANGED
@@ -11,6 +11,5 @@
11
11
  "strictPropertyInitialization": false,
12
12
  "noUnusedLocals": false,
13
13
  "noUnusedParameters": false
14
- },
15
- "include": ["lib/**/*", "bin/**/*", "test/**/*"]
14
+ }
16
15
  }
@@ -6,7 +6,5 @@
6
6
  "allowImportingTsExtensions": true,
7
7
  "module": "preserve",
8
8
  "moduleResolution": "bundler"
9
- },
10
- "include": ["**/*.ts"],
11
- "exclude": ["node_modules", "dist", "build"]
9
+ }
12
10
  }
@@ -12,7 +12,5 @@
12
12
  "@/*": ["./*"]
13
13
  },
14
14
  "moduleSuffixes": [".ios", ".android", ".native", ".web", ""]
15
- },
16
- "include": ["**/*.ts", "**/*.tsx", "nativewind-env.d.ts"],
17
- "exclude": ["node_modules", "dist", "web-build", "components/ui"]
15
+ }
18
16
  }
@@ -12,7 +12,5 @@
12
12
  "paths": {
13
13
  "@/*": ["./src/*"]
14
14
  }
15
- },
16
- "include": ["src/**/*"],
17
- "exclude": ["node_modules", ".build", "dist", "**/*.test.ts", "**/*.spec.ts"]
15
+ }
18
16
  }
@@ -2,6 +2,5 @@
2
2
  "extends": "./typescript.json",
3
3
  "compilerOptions": {
4
4
  "types": ["jest", "node"]
5
- },
6
- "include": ["**/*.spec.ts", "**/*.test.ts", "**/*.d.ts"]
5
+ }
7
6
  }
@@ -7,7 +7,5 @@
7
7
  "lib": ["ES2022"],
8
8
  "noUnusedLocals": true,
9
9
  "noUnusedParameters": true
10
- },
11
- "include": ["src/**/*"],
12
- "exclude": ["node_modules", "dist"]
10
+ }
13
11
  }
@@ -1,3 +1,5 @@
1
1
  {
2
- "extends": ["@codyswann/lisa/tsconfig/typescript", "./tsconfig.local.json"]
2
+ "extends": ["@codyswann/lisa/tsconfig/typescript", "./tsconfig.local.json"],
3
+ "include": ["src/**/*"],
4
+ "exclude": ["node_modules", "dist"]
3
5
  }
@@ -17,7 +17,7 @@
17
17
  "prepare": "node -e \"if (process.env.INIT_CWD && process.env.INIT_CWD.includes('.serverless')) { process.exit(0); }\" && husky install || true"
18
18
  },
19
19
  "devDependencies": {
20
- "@codyswann/lisa": "^1.49.0"
20
+ "@codyswann/lisa": "^1.54.6"
21
21
  },
22
22
  "resolutions": {
23
23
  "@isaacs/brace-expansion": "^5.0.1",