Add remaining new entry points

This commit is contained in:
Michael B. Gale
2026-05-14 14:55:33 +01:00
parent f0489abddd
commit 2f137c9dc6
21 changed files with 80 additions and 1 deletions
-1
View File
@@ -66,7 +66,6 @@ const context = await esbuild.context({
// Include upload-lib.ts as an entry point for use in testing environments.
entryPoints: globSync([
`${SRC_DIR}/*-entry.ts`,
// `${SRC_DIR}/*-action-post.ts`,
"src/entry-points.ts",
"src/upload-lib.ts",
]),
+5
View File
@@ -0,0 +1,5 @@
"use strict";
// src/analyze-entry.ts
var import_entry_points = require("./entry-points");
void (0, import_entry_points.runAnalyzeAction)();
+5
View File
@@ -0,0 +1,5 @@
"use strict";
// src/analyze-post-entry.ts
var import_entry_points = require("./entry-points");
void (0, import_entry_points.runAnalyzePostAction)();
+5
View File
@@ -0,0 +1,5 @@
"use strict";
// src/autobuild-entry.ts
var import_entry_points = require("./entry-points");
void (0, import_entry_points.runAutobuildAction)();
+5
View File
@@ -0,0 +1,5 @@
"use strict";
// src/init-post-entry.ts
var import_entry_points = require("./entry-points");
void (0, import_entry_points.runInitPostAction)();
+5
View File
@@ -0,0 +1,5 @@
"use strict";
// src/resolve-environment-entry.ts
var import_entry_points = require("./entry-points");
void (0, import_entry_points.runResolveEnvironmentAction)();
+5
View File
@@ -0,0 +1,5 @@
"use strict";
// src/setup-codeql-entry.ts
var import_entry_points = require("./entry-points");
void (0, import_entry_points.runSetupCodeqlAction)();
+5
View File
@@ -0,0 +1,5 @@
"use strict";
// src/start-proxy-entry.ts
var import_entry_points = require("./entry-points");
void (0, import_entry_points.runStartProxyAction)();
+5
View File
@@ -0,0 +1,5 @@
"use strict";
// src/start-proxy-post-entry.ts
var import_entry_points = require("./entry-points");
void (0, import_entry_points.runStartProxyPostAction)();
+5
View File
@@ -0,0 +1,5 @@
"use strict";
// src/upload-sarif-entry.ts
var import_entry_points = require("./entry-points");
void (0, import_entry_points.runUploadSarifAction)();
+5
View File
@@ -0,0 +1,5 @@
"use strict";
// src/upload-sarif-post-entry.ts
var import_entry_points = require("./entry-points");
void (0, import_entry_points.runUploadSarifPostAction)();
+3
View File
@@ -0,0 +1,3 @@
import { runAnalyzeAction } from "./entry-points";
void runAnalyzeAction();
+3
View File
@@ -0,0 +1,3 @@
import { runAnalyzePostAction } from "./entry-points";
void runAnalyzePostAction();
+3
View File
@@ -0,0 +1,3 @@
import { runAutobuildAction } from "./entry-points";
void runAutobuildAction();
+3
View File
@@ -0,0 +1,3 @@
import { runInitPostAction } from "./entry-points";
void runInitPostAction();
+3
View File
@@ -0,0 +1,3 @@
import { runResolveEnvironmentAction } from "./entry-points";
void runResolveEnvironmentAction();
+3
View File
@@ -0,0 +1,3 @@
import { runSetupCodeqlAction } from "./entry-points";
void runSetupCodeqlAction();
+3
View File
@@ -0,0 +1,3 @@
import { runStartProxyAction } from "./entry-points";
void runStartProxyAction();
+3
View File
@@ -0,0 +1,3 @@
import { runStartProxyPostAction } from "./entry-points";
void runStartProxyPostAction();
+3
View File
@@ -0,0 +1,3 @@
import { runUploadSarifAction } from "./entry-points";
void runUploadSarifAction();
+3
View File
@@ -0,0 +1,3 @@
import { runUploadSarifPostAction } from "./entry-points";
void runUploadSarifPostAction();