@codyswann/lisa 2.141.2 → 2.142.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.
- package/cdk/create-only/tsconfig.local.json +10 -2
- package/dist/migrations/ensure-tsconfig-local-files-fallback.d.ts +40 -0
- package/dist/migrations/ensure-tsconfig-local-files-fallback.d.ts.map +1 -0
- package/dist/migrations/ensure-tsconfig-local-files-fallback.js +76 -0
- package/dist/migrations/ensure-tsconfig-local-files-fallback.js.map +1 -0
- package/dist/migrations/index.d.ts +1 -0
- package/dist/migrations/index.d.ts.map +1 -1
- package/dist/migrations/index.js +3 -0
- package/dist/migrations/index.js.map +1 -1
- package/expo/create-only/tsconfig.local.json +18 -4
- package/nestjs/create-only/tsconfig.local.json +14 -3
- package/package.json +1 -1
- package/plugins/lisa/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa/.codex-plugin/plugin.json +1 -1
- package/plugins/lisa-agy/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-cdk-agy/plugin.json +1 -1
- package/plugins/lisa-cdk-copilot/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-cdk-cursor/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-copilot/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-cursor/.claude-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-expo-agy/plugin.json +1 -1
- package/plugins/lisa-expo-copilot/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-expo-cursor/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-harper-fabric/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-harper-fabric/.codex-plugin/plugin.json +1 -1
- package/plugins/lisa-harper-fabric-agy/plugin.json +1 -1
- package/plugins/lisa-harper-fabric-copilot/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-harper-fabric-cursor/.claude-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-nestjs-agy/plugin.json +1 -1
- package/plugins/lisa-nestjs-copilot/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-nestjs-cursor/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-openclaw/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-openclaw/.codex-plugin/plugin.json +1 -1
- package/plugins/lisa-openclaw-agy/plugin.json +1 -1
- package/plugins/lisa-openclaw-copilot/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-openclaw-cursor/.claude-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-rails-agy/plugin.json +1 -1
- package/plugins/lisa-rails-copilot/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-rails-cursor/.claude-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/plugins/lisa-typescript-agy/plugin.json +1 -1
- package/plugins/lisa-typescript-copilot/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-typescript-cursor/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-wiki/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-wiki/.codex-plugin/plugin.json +1 -1
- package/plugins/lisa-wiki-agy/plugin.json +1 -1
- package/plugins/lisa-wiki-copilot/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-wiki-cursor/.claude-plugin/plugin.json +1 -1
- package/typescript/create-only/tsconfig.local.json +11 -2
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import type { Migration, MigrationContext, MigrationResult } from "./migration.interface.js";
|
|
2
|
+
/**
|
|
3
|
+
* Migration: add an empty `files` array to tsconfig.local.json.
|
|
4
|
+
*
|
|
5
|
+
* Background: the stack tsconfig.local.json templates declare
|
|
6
|
+
* `include: ["src/**\/*"]`. A source-less repo (e.g. a SOC2 / infra-config
|
|
7
|
+
* project that ships only root-level *.config.ts and no `src/`) has an
|
|
8
|
+
* `include` that matches zero files, so `tsc --noEmit` aborts with
|
|
9
|
+
* `error TS18003: No inputs were found in config file`. That failure trips
|
|
10
|
+
* the lisa-managed typecheck pre-commit hook and blocks every commit, even
|
|
11
|
+
* though there is genuinely nothing to type-check.
|
|
12
|
+
*
|
|
13
|
+
* TypeScript treats an explicit (even empty) `files` array as an intentional
|
|
14
|
+
* file list and therefore does NOT raise TS18003. Crucially, when `include`
|
|
15
|
+
* also matches real sources the compiled program is the UNION of `files` and
|
|
16
|
+
* the `include` matches — so an empty `files` is a no-op for projects that
|
|
17
|
+
* have sources (they are still fully type-checked) and a graceful success for
|
|
18
|
+
* source-less ones. This is a posture change for empty-input tolerance, NOT a
|
|
19
|
+
* relaxation of any check.
|
|
20
|
+
*
|
|
21
|
+
* The key is injected only when absent, so a project that intentionally pins a
|
|
22
|
+
* non-empty `files` list keeps it.
|
|
23
|
+
*/
|
|
24
|
+
export declare class EnsureTsconfigLocalFilesFallbackMigration implements Migration {
|
|
25
|
+
readonly name = "ensure-tsconfig-local-files-fallback";
|
|
26
|
+
readonly description = "Add an empty `files` array to tsconfig.local.json so source-less projects pass tsc (TS18003) without disabling typechecking";
|
|
27
|
+
/**
|
|
28
|
+
* Check whether this migration should run on the project
|
|
29
|
+
* @param ctx - Migration context
|
|
30
|
+
* @returns True when tsconfig.local.json exists but has no `files` key
|
|
31
|
+
*/
|
|
32
|
+
applies(ctx: MigrationContext): Promise<boolean>;
|
|
33
|
+
/**
|
|
34
|
+
* Apply the migration, injecting an empty `files` array when absent
|
|
35
|
+
* @param ctx - Migration context
|
|
36
|
+
* @returns Result describing the action taken
|
|
37
|
+
*/
|
|
38
|
+
apply(ctx: MigrationContext): Promise<MigrationResult>;
|
|
39
|
+
}
|
|
40
|
+
//# sourceMappingURL=ensure-tsconfig-local-files-fallback.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ensure-tsconfig-local-files-fallback.d.ts","sourceRoot":"","sources":["../../src/migrations/ensure-tsconfig-local-files-fallback.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EACV,SAAS,EACT,gBAAgB,EAChB,eAAe,EAChB,MAAM,0BAA0B,CAAC;AAYlC;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,qBAAa,yCAA0C,YAAW,SAAS;IACzE,QAAQ,CAAC,IAAI,0CAA0C;IACvD,QAAQ,CAAC,WAAW,iIAC4G;IAEhI;;;;OAIG;IACG,OAAO,CAAC,GAAG,EAAE,gBAAgB,GAAG,OAAO,CAAC,OAAO,CAAC;IAStD;;;;OAIG;IACG,KAAK,CAAC,GAAG,EAAE,gBAAgB,GAAG,OAAO,CAAC,eAAe,CAAC;CA+B7D"}
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
import * as path from "node:path";
|
|
2
|
+
import * as fse from "fs-extra";
|
|
3
|
+
import { readJsonOrNull, writeJson } from "../utils/json-utils.js";
|
|
4
|
+
const TSCONFIG_LOCAL = "tsconfig.local.json";
|
|
5
|
+
/**
|
|
6
|
+
* Migration: add an empty `files` array to tsconfig.local.json.
|
|
7
|
+
*
|
|
8
|
+
* Background: the stack tsconfig.local.json templates declare
|
|
9
|
+
* `include: ["src/**\/*"]`. A source-less repo (e.g. a SOC2 / infra-config
|
|
10
|
+
* project that ships only root-level *.config.ts and no `src/`) has an
|
|
11
|
+
* `include` that matches zero files, so `tsc --noEmit` aborts with
|
|
12
|
+
* `error TS18003: No inputs were found in config file`. That failure trips
|
|
13
|
+
* the lisa-managed typecheck pre-commit hook and blocks every commit, even
|
|
14
|
+
* though there is genuinely nothing to type-check.
|
|
15
|
+
*
|
|
16
|
+
* TypeScript treats an explicit (even empty) `files` array as an intentional
|
|
17
|
+
* file list and therefore does NOT raise TS18003. Crucially, when `include`
|
|
18
|
+
* also matches real sources the compiled program is the UNION of `files` and
|
|
19
|
+
* the `include` matches — so an empty `files` is a no-op for projects that
|
|
20
|
+
* have sources (they are still fully type-checked) and a graceful success for
|
|
21
|
+
* source-less ones. This is a posture change for empty-input tolerance, NOT a
|
|
22
|
+
* relaxation of any check.
|
|
23
|
+
*
|
|
24
|
+
* The key is injected only when absent, so a project that intentionally pins a
|
|
25
|
+
* non-empty `files` list keeps it.
|
|
26
|
+
*/
|
|
27
|
+
export class EnsureTsconfigLocalFilesFallbackMigration {
|
|
28
|
+
name = "ensure-tsconfig-local-files-fallback";
|
|
29
|
+
description = "Add an empty `files` array to tsconfig.local.json so source-less projects pass tsc (TS18003) without disabling typechecking";
|
|
30
|
+
/**
|
|
31
|
+
* Check whether this migration should run on the project
|
|
32
|
+
* @param ctx - Migration context
|
|
33
|
+
* @returns True when tsconfig.local.json exists but has no `files` key
|
|
34
|
+
*/
|
|
35
|
+
async applies(ctx) {
|
|
36
|
+
const tsconfigLocalPath = path.join(ctx.projectDir, TSCONFIG_LOCAL);
|
|
37
|
+
const existing = await readJsonOrNull(tsconfigLocalPath);
|
|
38
|
+
if (!existing) {
|
|
39
|
+
return false;
|
|
40
|
+
}
|
|
41
|
+
return existing.files === undefined;
|
|
42
|
+
}
|
|
43
|
+
/**
|
|
44
|
+
* Apply the migration, injecting an empty `files` array when absent
|
|
45
|
+
* @param ctx - Migration context
|
|
46
|
+
* @returns Result describing the action taken
|
|
47
|
+
*/
|
|
48
|
+
async apply(ctx) {
|
|
49
|
+
const tsconfigLocalPath = path.join(ctx.projectDir, TSCONFIG_LOCAL);
|
|
50
|
+
const existing = await readJsonOrNull(tsconfigLocalPath);
|
|
51
|
+
if (!existing || existing.files !== undefined) {
|
|
52
|
+
return { name: this.name, action: "noop" };
|
|
53
|
+
}
|
|
54
|
+
const patched = { ...existing, files: [] };
|
|
55
|
+
const message = "Added empty `files` array to tsconfig.local.json (TS18003 fallback)";
|
|
56
|
+
if (ctx.dryRun) {
|
|
57
|
+
ctx.logger.dry(`Would add empty \`files\` array to ${TSCONFIG_LOCAL}`);
|
|
58
|
+
return {
|
|
59
|
+
name: this.name,
|
|
60
|
+
action: "applied",
|
|
61
|
+
changedFiles: [TSCONFIG_LOCAL],
|
|
62
|
+
message,
|
|
63
|
+
};
|
|
64
|
+
}
|
|
65
|
+
await fse.ensureDir(path.dirname(tsconfigLocalPath));
|
|
66
|
+
await writeJson(tsconfigLocalPath, patched);
|
|
67
|
+
ctx.logger.success(message);
|
|
68
|
+
return {
|
|
69
|
+
name: this.name,
|
|
70
|
+
action: "applied",
|
|
71
|
+
changedFiles: [TSCONFIG_LOCAL],
|
|
72
|
+
message,
|
|
73
|
+
};
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
//# sourceMappingURL=ensure-tsconfig-local-files-fallback.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ensure-tsconfig-local-files-fallback.js","sourceRoot":"","sources":["../../src/migrations/ensure-tsconfig-local-files-fallback.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,IAAI,MAAM,WAAW,CAAC;AAClC,OAAO,KAAK,GAAG,MAAM,UAAU,CAAC;AAChC,OAAO,EAAE,cAAc,EAAE,SAAS,EAAE,MAAM,wBAAwB,CAAC;AAOnE,MAAM,cAAc,GAAG,qBAAqB,CAAC;AAU7C;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,MAAM,OAAO,yCAAyC;IAC3C,IAAI,GAAG,sCAAsC,CAAC;IAC9C,WAAW,GAClB,6HAA6H,CAAC;IAEhI;;;;OAIG;IACH,KAAK,CAAC,OAAO,CAAC,GAAqB;QACjC,MAAM,iBAAiB,GAAG,IAAI,CAAC,IAAI,CAAC,GAAG,CAAC,UAAU,EAAE,cAAc,CAAC,CAAC;QACpE,MAAM,QAAQ,GAAG,MAAM,cAAc,CAAe,iBAAiB,CAAC,CAAC;QACvE,IAAI,CAAC,QAAQ,EAAE,CAAC;YACd,OAAO,KAAK,CAAC;QACf,CAAC;QACD,OAAO,QAAQ,CAAC,KAAK,KAAK,SAAS,CAAC;IACtC,CAAC;IAED;;;;OAIG;IACH,KAAK,CAAC,KAAK,CAAC,GAAqB;QAC/B,MAAM,iBAAiB,GAAG,IAAI,CAAC,IAAI,CAAC,GAAG,CAAC,UAAU,EAAE,cAAc,CAAC,CAAC;QACpE,MAAM,QAAQ,GAAG,MAAM,cAAc,CAAe,iBAAiB,CAAC,CAAC;QACvE,IAAI,CAAC,QAAQ,IAAI,QAAQ,CAAC,KAAK,KAAK,SAAS,EAAE,CAAC;YAC9C,OAAO,EAAE,IAAI,EAAE,IAAI,CAAC,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,CAAC;QAC7C,CAAC;QAED,MAAM,OAAO,GAAiB,EAAE,GAAG,QAAQ,EAAE,KAAK,EAAE,EAAE,EAAE,CAAC;QACzD,MAAM,OAAO,GACX,qEAAqE,CAAC;QAExE,IAAI,GAAG,CAAC,MAAM,EAAE,CAAC;YACf,GAAG,CAAC,MAAM,CAAC,GAAG,CAAC,sCAAsC,cAAc,EAAE,CAAC,CAAC;YACvE,OAAO;gBACL,IAAI,EAAE,IAAI,CAAC,IAAI;gBACf,MAAM,EAAE,SAAS;gBACjB,YAAY,EAAE,CAAC,cAAc,CAAC;gBAC9B,OAAO;aACR,CAAC;QACJ,CAAC;QAED,MAAM,GAAG,CAAC,SAAS,CAAC,IAAI,CAAC,OAAO,CAAC,iBAAiB,CAAC,CAAC,CAAC;QACrD,MAAM,SAAS,CAAC,iBAAiB,EAAE,OAAO,CAAC,CAAC;QAC5C,GAAG,CAAC,MAAM,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC;QAC5B,OAAO;YACL,IAAI,EAAE,IAAI,CAAC,IAAI;YACf,MAAM,EAAE,SAAS;YACjB,YAAY,EAAE,CAAC,cAAc,CAAC;YAC9B,OAAO;SACR,CAAC;IACJ,CAAC;CACF"}
|
|
@@ -2,6 +2,7 @@ import type { Migration, MigrationContext, MigrationResult } from "./migration.i
|
|
|
2
2
|
export type { Migration, MigrationAction, MigrationContext, MigrationResult, } from "./migration.interface.js";
|
|
3
3
|
export { EnsureAuditIgnoreLocalExclusionsMigration } from "./ensure-audit-ignore-local-exclusions.js";
|
|
4
4
|
export { EnsureLisaPostinstallMigration } from "./ensure-lisa-postinstall.js";
|
|
5
|
+
export { EnsureTsconfigLocalFilesFallbackMigration } from "./ensure-tsconfig-local-files-fallback.js";
|
|
5
6
|
export { EnsureTsconfigLocalIncludesMigration } from "./ensure-tsconfig-local-includes.js";
|
|
6
7
|
/**
|
|
7
8
|
* Registry that runs applicable migrations against a destination project
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/migrations/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/migrations/index.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EACV,SAAS,EACT,gBAAgB,EAChB,eAAe,EAChB,MAAM,0BAA0B,CAAC;AAElC,YAAY,EACV,SAAS,EACT,eAAe,EACf,gBAAgB,EAChB,eAAe,GAChB,MAAM,0BAA0B,CAAC;AAClC,OAAO,EAAE,yCAAyC,EAAE,MAAM,2CAA2C,CAAC;AACtG,OAAO,EAAE,8BAA8B,EAAE,MAAM,8BAA8B,CAAC;AAC9E,OAAO,EAAE,yCAAyC,EAAE,MAAM,2CAA2C,CAAC;AACtG,OAAO,EAAE,oCAAoC,EAAE,MAAM,qCAAqC,CAAC;AAE3F;;GAEG;AACH,qBAAa,iBAAiB;IAC5B,OAAO,CAAC,QAAQ,CAAC,UAAU,CAAuB;IAElD;;;OAGG;gBACS,UAAU,CAAC,EAAE,SAAS,SAAS,EAAE;IAS7C;;;OAGG;IACH,MAAM,IAAI,SAAS,SAAS,EAAE;IAI9B;;;;OAIG;IACG,mBAAmB,CAAC,GAAG,EAAE,gBAAgB,GAAG,OAAO,CAAC,IAAI,CAAC;IAQ/D;;;;OAIG;IACG,MAAM,CAAC,GAAG,EAAE,gBAAgB,GAAG,OAAO,CAAC,SAAS,eAAe,EAAE,CAAC;CAazE;AAED;;;GAGG;AACH,wBAAgB,uBAAuB,IAAI,iBAAiB,CAE3D"}
|
package/dist/migrations/index.js
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
import { EnsureAuditIgnoreLocalExclusionsMigration } from "./ensure-audit-ignore-local-exclusions.js";
|
|
2
2
|
import { EnsureLisaPostinstallMigration } from "./ensure-lisa-postinstall.js";
|
|
3
|
+
import { EnsureTsconfigLocalFilesFallbackMigration } from "./ensure-tsconfig-local-files-fallback.js";
|
|
3
4
|
import { EnsureTsconfigLocalIncludesMigration } from "./ensure-tsconfig-local-includes.js";
|
|
4
5
|
export { EnsureAuditIgnoreLocalExclusionsMigration } from "./ensure-audit-ignore-local-exclusions.js";
|
|
5
6
|
export { EnsureLisaPostinstallMigration } from "./ensure-lisa-postinstall.js";
|
|
7
|
+
export { EnsureTsconfigLocalFilesFallbackMigration } from "./ensure-tsconfig-local-files-fallback.js";
|
|
6
8
|
export { EnsureTsconfigLocalIncludesMigration } from "./ensure-tsconfig-local-includes.js";
|
|
7
9
|
/**
|
|
8
10
|
* Registry that runs applicable migrations against a destination project
|
|
@@ -16,6 +18,7 @@ export class MigrationRegistry {
|
|
|
16
18
|
constructor(migrations) {
|
|
17
19
|
this.migrations = migrations ?? [
|
|
18
20
|
new EnsureTsconfigLocalIncludesMigration(),
|
|
21
|
+
new EnsureTsconfigLocalFilesFallbackMigration(),
|
|
19
22
|
new EnsureAuditIgnoreLocalExclusionsMigration(),
|
|
20
23
|
new EnsureLisaPostinstallMigration(),
|
|
21
24
|
];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/migrations/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,yCAAyC,EAAE,MAAM,2CAA2C,CAAC;AACtG,OAAO,EAAE,8BAA8B,EAAE,MAAM,8BAA8B,CAAC;AAC9E,OAAO,EAAE,oCAAoC,EAAE,MAAM,qCAAqC,CAAC;AAa3F,OAAO,EAAE,yCAAyC,EAAE,MAAM,2CAA2C,CAAC;AACtG,OAAO,EAAE,8BAA8B,EAAE,MAAM,8BAA8B,CAAC;AAC9E,OAAO,EAAE,oCAAoC,EAAE,MAAM,qCAAqC,CAAC;AAE3F;;GAEG;AACH,MAAM,OAAO,iBAAiB;IACX,UAAU,CAAuB;IAElD;;;OAGG;IACH,YAAY,UAAiC;QAC3C,IAAI,CAAC,UAAU,GAAG,UAAU,IAAI;YAC9B,IAAI,oCAAoC,EAAE;YAC1C,IAAI,yCAAyC,EAAE;YAC/C,IAAI,8BAA8B,EAAE;SACrC,CAAC;IACJ,CAAC;IAED;;;OAGG;IACH,MAAM;QACJ,OAAO,IAAI,CAAC,UAAU,CAAC;IACzB,CAAC;IAED;;;;OAIG;IACH,KAAK,CAAC,mBAAmB,CAAC,GAAqB;QAC7C,KAAK,MAAM,SAAS,IAAI,IAAI,CAAC,UAAU,EAAE,CAAC;YACxC,IAAI,SAAS,CAAC,gBAAgB,EAAE,CAAC;gBAC/B,MAAM,SAAS,CAAC,gBAAgB,CAAC,GAAG,CAAC,CAAC;YACxC,CAAC;QACH,CAAC;IACH,CAAC;IAED;;;;OAIG;IACH,KAAK,CAAC,MAAM,CAAC,GAAqB;QAChC,MAAM,OAAO,GAAsB,EAAE,CAAC;QACtC,KAAK,MAAM,SAAS,IAAI,IAAI,CAAC,UAAU,EAAE,CAAC;YACxC,MAAM,SAAS,GAAG,MAAM,SAAS,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC;YAC/C,IAAI,CAAC,SAAS,EAAE,CAAC;gBACf,OAAO,CAAC,IAAI,CAAC,EAAE,IAAI,EAAE,SAAS,CAAC,IAAI,EAAE,MAAM,EAAE,SAAS,EAAE,CAAC,CAAC;gBAC1D,SAAS;YACX,CAAC;YACD,MAAM,MAAM,GAAG,MAAM,SAAS,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;YAC1C,OAAO,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;QACvB,CAAC;QACD,OAAO,OAAO,CAAC;IACjB,CAAC;CACF;AAED;;;GAGG;AACH,MAAM,UAAU,uBAAuB;IACrC,OAAO,IAAI,iBAAiB,EAAE,CAAC;AACjC,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/migrations/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,yCAAyC,EAAE,MAAM,2CAA2C,CAAC;AACtG,OAAO,EAAE,8BAA8B,EAAE,MAAM,8BAA8B,CAAC;AAC9E,OAAO,EAAE,yCAAyC,EAAE,MAAM,2CAA2C,CAAC;AACtG,OAAO,EAAE,oCAAoC,EAAE,MAAM,qCAAqC,CAAC;AAa3F,OAAO,EAAE,yCAAyC,EAAE,MAAM,2CAA2C,CAAC;AACtG,OAAO,EAAE,8BAA8B,EAAE,MAAM,8BAA8B,CAAC;AAC9E,OAAO,EAAE,yCAAyC,EAAE,MAAM,2CAA2C,CAAC;AACtG,OAAO,EAAE,oCAAoC,EAAE,MAAM,qCAAqC,CAAC;AAE3F;;GAEG;AACH,MAAM,OAAO,iBAAiB;IACX,UAAU,CAAuB;IAElD;;;OAGG;IACH,YAAY,UAAiC;QAC3C,IAAI,CAAC,UAAU,GAAG,UAAU,IAAI;YAC9B,IAAI,oCAAoC,EAAE;YAC1C,IAAI,yCAAyC,EAAE;YAC/C,IAAI,yCAAyC,EAAE;YAC/C,IAAI,8BAA8B,EAAE;SACrC,CAAC;IACJ,CAAC;IAED;;;OAGG;IACH,MAAM;QACJ,OAAO,IAAI,CAAC,UAAU,CAAC;IACzB,CAAC;IAED;;;;OAIG;IACH,KAAK,CAAC,mBAAmB,CAAC,GAAqB;QAC7C,KAAK,MAAM,SAAS,IAAI,IAAI,CAAC,UAAU,EAAE,CAAC;YACxC,IAAI,SAAS,CAAC,gBAAgB,EAAE,CAAC;gBAC/B,MAAM,SAAS,CAAC,gBAAgB,CAAC,GAAG,CAAC,CAAC;YACxC,CAAC;QACH,CAAC;IACH,CAAC;IAED;;;;OAIG;IACH,KAAK,CAAC,MAAM,CAAC,GAAqB;QAChC,MAAM,OAAO,GAAsB,EAAE,CAAC;QACtC,KAAK,MAAM,SAAS,IAAI,IAAI,CAAC,UAAU,EAAE,CAAC;YACxC,MAAM,SAAS,GAAG,MAAM,SAAS,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC;YAC/C,IAAI,CAAC,SAAS,EAAE,CAAC;gBACf,OAAO,CAAC,IAAI,CAAC,EAAE,IAAI,EAAE,SAAS,CAAC,IAAI,EAAE,MAAM,EAAE,SAAS,EAAE,CAAC,CAAC;gBAC1D,SAAS;YACX,CAAC;YACD,MAAM,MAAM,GAAG,MAAM,SAAS,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;YAC1C,OAAO,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;QACvB,CAAC;QACD,OAAO,OAAO,CAAC;IACjB,CAAC;CACF;AAED;;;GAGG;AACH,MAAM,UAAU,uBAAuB;IACrC,OAAO,IAAI,iBAAiB,EAAE,CAAC;AACjC,CAAC"}
|
|
@@ -1,10 +1,24 @@
|
|
|
1
1
|
{
|
|
2
2
|
"compilerOptions": {
|
|
3
3
|
"paths": {
|
|
4
|
-
"@/graphql/*": [
|
|
5
|
-
|
|
4
|
+
"@/graphql/*": [
|
|
5
|
+
"./generated/*"
|
|
6
|
+
],
|
|
7
|
+
"@/*": [
|
|
8
|
+
"./*"
|
|
9
|
+
]
|
|
6
10
|
}
|
|
7
11
|
},
|
|
8
|
-
"include": [
|
|
9
|
-
|
|
12
|
+
"include": [
|
|
13
|
+
"**/*.ts",
|
|
14
|
+
"**/*.tsx",
|
|
15
|
+
"nativewind-env.d.ts"
|
|
16
|
+
],
|
|
17
|
+
"exclude": [
|
|
18
|
+
"node_modules",
|
|
19
|
+
"dist",
|
|
20
|
+
"web-build",
|
|
21
|
+
"components/ui"
|
|
22
|
+
],
|
|
23
|
+
"files": []
|
|
10
24
|
}
|
|
@@ -3,9 +3,20 @@
|
|
|
3
3
|
"outDir": ".build",
|
|
4
4
|
"rootDir": "src",
|
|
5
5
|
"paths": {
|
|
6
|
-
"@/*": [
|
|
6
|
+
"@/*": [
|
|
7
|
+
"./src/*"
|
|
8
|
+
]
|
|
7
9
|
}
|
|
8
10
|
},
|
|
9
|
-
"include": [
|
|
10
|
-
|
|
11
|
+
"include": [
|
|
12
|
+
"src/**/*"
|
|
13
|
+
],
|
|
14
|
+
"exclude": [
|
|
15
|
+
"node_modules",
|
|
16
|
+
".build",
|
|
17
|
+
"dist",
|
|
18
|
+
"**/*.test.ts",
|
|
19
|
+
"**/*.spec.ts"
|
|
20
|
+
],
|
|
21
|
+
"files": []
|
|
11
22
|
}
|
package/package.json
CHANGED
|
@@ -84,7 +84,7 @@
|
|
|
84
84
|
"lodash": ">=4.18.1"
|
|
85
85
|
},
|
|
86
86
|
"name": "@codyswann/lisa",
|
|
87
|
-
"version": "2.
|
|
87
|
+
"version": "2.142.0",
|
|
88
88
|
"description": "Claude Code governance framework that applies guardrails, guidance, and automated enforcement to projects",
|
|
89
89
|
"main": "dist/index.js",
|
|
90
90
|
"exports": {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lisa-openclaw",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.142.0",
|
|
4
4
|
"description": "Connect staff roles to Telegram or Slack via OpenClaw — facilitator/specialist hub-and-spoke routing and repo-coding topics, for Claude Code and Codex",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Cody Swann"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lisa-openclaw",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.142.0",
|
|
4
4
|
"description": "Connect staff roles to Telegram or Slack via OpenClaw — facilitator/specialist hub-and-spoke routing and repo-coding topics, across Claude and Codex.",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Cody Swann"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lisa-openclaw",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.142.0",
|
|
4
4
|
"description": "Connect staff roles to Telegram or Slack via OpenClaw — facilitator/specialist hub-and-spoke routing and repo-coding topics, for Claude Code and Codex",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Cody Swann"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lisa-openclaw",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.142.0",
|
|
4
4
|
"description": "Connect staff roles to Telegram or Slack via OpenClaw — facilitator/specialist hub-and-spoke routing and repo-coding topics, for Claude Code and Codex",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Cody Swann"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lisa-openclaw",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.142.0",
|
|
4
4
|
"description": "Connect staff roles to Telegram or Slack via OpenClaw — facilitator/specialist hub-and-spoke routing and repo-coding topics, for Claude Code and Codex",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Cody Swann"
|
|
@@ -3,6 +3,15 @@
|
|
|
3
3
|
"outDir": "dist",
|
|
4
4
|
"rootDir": "src"
|
|
5
5
|
},
|
|
6
|
-
"include": [
|
|
7
|
-
|
|
6
|
+
"include": [
|
|
7
|
+
"src/**/*"
|
|
8
|
+
],
|
|
9
|
+
"exclude": [
|
|
10
|
+
"node_modules",
|
|
11
|
+
".build",
|
|
12
|
+
"dist",
|
|
13
|
+
"**/*.test.ts",
|
|
14
|
+
"**/*.spec.ts"
|
|
15
|
+
],
|
|
16
|
+
"files": []
|
|
8
17
|
}
|