diff --git a/build.mjs b/build.mjs index 4ec065bdd..69d305926 100644 --- a/build.mjs +++ b/build.mjs @@ -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", ]), diff --git a/lib/analyze-entry.js b/lib/analyze-entry.js new file mode 100644 index 000000000..eaf4ee0d5 --- /dev/null +++ b/lib/analyze-entry.js @@ -0,0 +1,5 @@ +"use strict"; + +// src/analyze-entry.ts +var import_entry_points = require("./entry-points"); +void (0, import_entry_points.runAnalyzeAction)(); diff --git a/lib/analyze-post-entry.js b/lib/analyze-post-entry.js new file mode 100644 index 000000000..741c30e55 --- /dev/null +++ b/lib/analyze-post-entry.js @@ -0,0 +1,5 @@ +"use strict"; + +// src/analyze-post-entry.ts +var import_entry_points = require("./entry-points"); +void (0, import_entry_points.runAnalyzePostAction)(); diff --git a/lib/autobuild-entry.js b/lib/autobuild-entry.js new file mode 100644 index 000000000..733a5295d --- /dev/null +++ b/lib/autobuild-entry.js @@ -0,0 +1,5 @@ +"use strict"; + +// src/autobuild-entry.ts +var import_entry_points = require("./entry-points"); +void (0, import_entry_points.runAutobuildAction)(); diff --git a/lib/init-post-entry.js b/lib/init-post-entry.js new file mode 100644 index 000000000..5c6a4a024 --- /dev/null +++ b/lib/init-post-entry.js @@ -0,0 +1,5 @@ +"use strict"; + +// src/init-post-entry.ts +var import_entry_points = require("./entry-points"); +void (0, import_entry_points.runInitPostAction)(); diff --git a/lib/resolve-environment-entry.js b/lib/resolve-environment-entry.js new file mode 100644 index 000000000..257b225ce --- /dev/null +++ b/lib/resolve-environment-entry.js @@ -0,0 +1,5 @@ +"use strict"; + +// src/resolve-environment-entry.ts +var import_entry_points = require("./entry-points"); +void (0, import_entry_points.runResolveEnvironmentAction)(); diff --git a/lib/setup-codeql-entry.js b/lib/setup-codeql-entry.js new file mode 100644 index 000000000..6d88edd85 --- /dev/null +++ b/lib/setup-codeql-entry.js @@ -0,0 +1,5 @@ +"use strict"; + +// src/setup-codeql-entry.ts +var import_entry_points = require("./entry-points"); +void (0, import_entry_points.runSetupCodeqlAction)(); diff --git a/lib/start-proxy-entry.js b/lib/start-proxy-entry.js new file mode 100644 index 000000000..46168ef1d --- /dev/null +++ b/lib/start-proxy-entry.js @@ -0,0 +1,5 @@ +"use strict"; + +// src/start-proxy-entry.ts +var import_entry_points = require("./entry-points"); +void (0, import_entry_points.runStartProxyAction)(); diff --git a/lib/start-proxy-post-entry.js b/lib/start-proxy-post-entry.js new file mode 100644 index 000000000..faaa904ca --- /dev/null +++ b/lib/start-proxy-post-entry.js @@ -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)(); diff --git a/lib/upload-sarif-entry.js b/lib/upload-sarif-entry.js new file mode 100644 index 000000000..b3a9316bf --- /dev/null +++ b/lib/upload-sarif-entry.js @@ -0,0 +1,5 @@ +"use strict"; + +// src/upload-sarif-entry.ts +var import_entry_points = require("./entry-points"); +void (0, import_entry_points.runUploadSarifAction)(); diff --git a/lib/upload-sarif-post-entry.js b/lib/upload-sarif-post-entry.js new file mode 100644 index 000000000..688aad734 --- /dev/null +++ b/lib/upload-sarif-post-entry.js @@ -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)(); diff --git a/src/analyze-entry.ts b/src/analyze-entry.ts new file mode 100644 index 000000000..05dc62423 --- /dev/null +++ b/src/analyze-entry.ts @@ -0,0 +1,3 @@ +import { runAnalyzeAction } from "./entry-points"; + +void runAnalyzeAction(); diff --git a/src/analyze-post-entry.ts b/src/analyze-post-entry.ts new file mode 100644 index 000000000..2104957db --- /dev/null +++ b/src/analyze-post-entry.ts @@ -0,0 +1,3 @@ +import { runAnalyzePostAction } from "./entry-points"; + +void runAnalyzePostAction(); diff --git a/src/autobuild-entry.ts b/src/autobuild-entry.ts new file mode 100644 index 000000000..0dfb3bbdd --- /dev/null +++ b/src/autobuild-entry.ts @@ -0,0 +1,3 @@ +import { runAutobuildAction } from "./entry-points"; + +void runAutobuildAction(); diff --git a/src/init-post-entry.ts b/src/init-post-entry.ts new file mode 100644 index 000000000..0fe9d507e --- /dev/null +++ b/src/init-post-entry.ts @@ -0,0 +1,3 @@ +import { runInitPostAction } from "./entry-points"; + +void runInitPostAction(); diff --git a/src/resolve-environment-entry.ts b/src/resolve-environment-entry.ts new file mode 100644 index 000000000..9fc7ade71 --- /dev/null +++ b/src/resolve-environment-entry.ts @@ -0,0 +1,3 @@ +import { runResolveEnvironmentAction } from "./entry-points"; + +void runResolveEnvironmentAction(); diff --git a/src/setup-codeql-entry.ts b/src/setup-codeql-entry.ts new file mode 100644 index 000000000..cd1ddf5a5 --- /dev/null +++ b/src/setup-codeql-entry.ts @@ -0,0 +1,3 @@ +import { runSetupCodeqlAction } from "./entry-points"; + +void runSetupCodeqlAction(); diff --git a/src/start-proxy-entry.ts b/src/start-proxy-entry.ts new file mode 100644 index 000000000..63bdd0bf8 --- /dev/null +++ b/src/start-proxy-entry.ts @@ -0,0 +1,3 @@ +import { runStartProxyAction } from "./entry-points"; + +void runStartProxyAction(); diff --git a/src/start-proxy-post-entry.ts b/src/start-proxy-post-entry.ts new file mode 100644 index 000000000..0ea4e25d1 --- /dev/null +++ b/src/start-proxy-post-entry.ts @@ -0,0 +1,3 @@ +import { runStartProxyPostAction } from "./entry-points"; + +void runStartProxyPostAction(); diff --git a/src/upload-sarif-entry.ts b/src/upload-sarif-entry.ts new file mode 100644 index 000000000..4a088e503 --- /dev/null +++ b/src/upload-sarif-entry.ts @@ -0,0 +1,3 @@ +import { runUploadSarifAction } from "./entry-points"; + +void runUploadSarifAction(); diff --git a/src/upload-sarif-post-entry.ts b/src/upload-sarif-post-entry.ts new file mode 100644 index 000000000..2445a024a --- /dev/null +++ b/src/upload-sarif-post-entry.ts @@ -0,0 +1,3 @@ +import { runUploadSarifPostAction } from "./entry-points"; + +void runUploadSarifPostAction();