Switch entrypoint and main functionality

This commit is contained in:
Nick Alteen
2023-09-11 15:54:30 -04:00
parent dd289c24c4
commit 03da66625b
6 changed files with 139 additions and 113 deletions

28
dist/index.js generated vendored
View File

@ -2722,7 +2722,7 @@ exports["default"] = _default;
/***/ }),
/***/ 144:
/***/ 399:
/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) {
"use strict";
@ -2777,8 +2777,6 @@ async function run() {
}
}
exports.run = run;
// eslint-disable-next-line @typescript-eslint/no-floating-promises
run();
/***/ }),
@ -2934,12 +2932,22 @@ module.exports = require("util");
/******/ if (typeof __nccwpck_require__ !== 'undefined') __nccwpck_require__.ab = __dirname + "/";
/******/
/************************************************************************/
/******/
/******/ // startup
/******/ // Load entry module and return exports
/******/ // This entry module is referenced by other modules so it can't be inlined
/******/ var __webpack_exports__ = __nccwpck_require__(144);
/******/ module.exports = __webpack_exports__;
/******/
var __webpack_exports__ = {};
// This entry need to be wrapped in an IIFE because it need to be in strict mode.
(() => {
"use strict";
var exports = __webpack_exports__;
Object.defineProperty(exports, "__esModule", ({ value: true }));
/**
* The entrypoint for the action.
*/
const main_1 = __nccwpck_require__(399);
// eslint-disable-next-line @typescript-eslint/no-floating-promises
(0, main_1.run)();
})();
module.exports = __webpack_exports__;
/******/ })()
;