@lumerahq/cli 0.30.3 → 0.30.4-dev.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/dist/index.js
CHANGED
|
@@ -240,25 +240,25 @@ async function main() {
|
|
|
240
240
|
switch (command) {
|
|
241
241
|
// Resource commands
|
|
242
242
|
case "plan":
|
|
243
|
-
await import("./resources-
|
|
243
|
+
await import("./resources-TZD6KV4M.js").then((m) => m.plan(args.slice(1)));
|
|
244
244
|
break;
|
|
245
245
|
case "apply":
|
|
246
|
-
await import("./resources-
|
|
246
|
+
await import("./resources-TZD6KV4M.js").then((m) => m.apply(args.slice(1)));
|
|
247
247
|
break;
|
|
248
248
|
case "pull":
|
|
249
|
-
await import("./resources-
|
|
249
|
+
await import("./resources-TZD6KV4M.js").then((m) => m.pull(args.slice(1)));
|
|
250
250
|
break;
|
|
251
251
|
case "destroy":
|
|
252
|
-
await import("./resources-
|
|
252
|
+
await import("./resources-TZD6KV4M.js").then((m) => m.destroy(args.slice(1)));
|
|
253
253
|
break;
|
|
254
254
|
case "list":
|
|
255
|
-
await import("./resources-
|
|
255
|
+
await import("./resources-TZD6KV4M.js").then((m) => m.list(args.slice(1)));
|
|
256
256
|
break;
|
|
257
257
|
case "show":
|
|
258
|
-
await import("./resources-
|
|
258
|
+
await import("./resources-TZD6KV4M.js").then((m) => m.show(args.slice(1)));
|
|
259
259
|
break;
|
|
260
260
|
case "diff":
|
|
261
|
-
await import("./resources-
|
|
261
|
+
await import("./resources-TZD6KV4M.js").then((m) => m.diff(args.slice(1)));
|
|
262
262
|
break;
|
|
263
263
|
// Development
|
|
264
264
|
case "dev":
|
|
@@ -38,7 +38,7 @@ import { join as join2, resolve } from "path";
|
|
|
38
38
|
import { existsSync, readFileSync, readdirSync } from "fs";
|
|
39
39
|
import { basename, dirname, join } from "path";
|
|
40
40
|
|
|
41
|
-
// src/lib/lint/
|
|
41
|
+
// src/lib/lint/compile-diagnostics.ts
|
|
42
42
|
function compileDiagnostic(value) {
|
|
43
43
|
if (!value || typeof value !== "object") return void 0;
|
|
44
44
|
const diagnostic = value;
|
|
@@ -63,6 +63,8 @@ function apiCompileDiagnostics(err) {
|
|
|
63
63
|
}
|
|
64
64
|
return [{ message: detail }];
|
|
65
65
|
}
|
|
66
|
+
|
|
67
|
+
// src/lib/lint/rules/agent-policy-compile.ts
|
|
66
68
|
function compileError(target, diagnostic) {
|
|
67
69
|
const position = diagnostic.line ? ` at line ${diagnostic.line}${diagnostic.column ? `, column ${diagnostic.column}` : ""}` : "";
|
|
68
70
|
return {
|
|
@@ -75,7 +77,7 @@ function compileError(target, diagnostic) {
|
|
|
75
77
|
}
|
|
76
78
|
var agentPolicyCompileRule = {
|
|
77
79
|
id: "agent-policy-compile",
|
|
78
|
-
description: "Verifies
|
|
80
|
+
description: "Verifies the bare policy.js body with the backend runtime compiler.",
|
|
79
81
|
appliesTo: ["agent-policy"],
|
|
80
82
|
async check(target, ctx) {
|
|
81
83
|
if (!target.source.trim()) {
|
|
@@ -662,9 +664,14 @@ function parseHookFile(content) {
|
|
|
662
664
|
const body = handlerNode.body;
|
|
663
665
|
if (body) {
|
|
664
666
|
if (body.type === "BlockStatement") {
|
|
665
|
-
|
|
667
|
+
const rawBody = content.slice(body.start + 1, body.end - 1);
|
|
668
|
+
finding.scriptBody = rawBody.trim();
|
|
669
|
+
const firstContent = rawBody.search(/\S/);
|
|
670
|
+
const bodyOffset = firstContent >= 0 ? body.start + 1 + firstContent : body.start + 1;
|
|
671
|
+
finding.scriptBodyStartLine = content.slice(0, bodyOffset).split("\n").length;
|
|
666
672
|
} else {
|
|
667
673
|
finding.scriptBody = `return ${content.slice(body.start, body.end)};`;
|
|
674
|
+
finding.scriptBodyStartLine = body.loc?.start.line;
|
|
668
675
|
}
|
|
669
676
|
}
|
|
670
677
|
} else if (topLevelReturnFound) {
|
|
@@ -788,8 +795,20 @@ var hookVerifyRule = {
|
|
|
788
795
|
try {
|
|
789
796
|
await ctx.api.compileHook(script);
|
|
790
797
|
} catch (err) {
|
|
791
|
-
const
|
|
792
|
-
|
|
798
|
+
const diagnostics = err instanceof ApiError ? apiCompileDiagnostics(err) : [{ message: err instanceof Error ? err.message : String(err) }];
|
|
799
|
+
const bodyStartLine = finding.scriptBodyStartLine ?? 1;
|
|
800
|
+
return [
|
|
801
|
+
...advisories,
|
|
802
|
+
...diagnostics.map((diagnostic) => {
|
|
803
|
+
const line = diagnostic.line ? bodyStartLine + diagnostic.line - 1 : void 0;
|
|
804
|
+
const position = line ? ` at line ${line}${diagnostic.column ? `, column ${diagnostic.column}` : ""}` : "";
|
|
805
|
+
return error2(
|
|
806
|
+
target,
|
|
807
|
+
`Hook failed to compile on the backend${position}: ${diagnostic.message}`,
|
|
808
|
+
line
|
|
809
|
+
);
|
|
810
|
+
})
|
|
811
|
+
];
|
|
793
812
|
}
|
|
794
813
|
return advisories;
|
|
795
814
|
}
|