From 080b97d73ea4b997885faeac475c3a065c6b2ee0 Mon Sep 17 00:00:00 2001 From: srz_zumix Date: Mon, 19 Feb 2024 01:27:39 +0900 Subject: [PATCH] up --- dist/main/index.js | 63 ++++++---------------------------------------- src/main/index.js | 3 +-- src/main/main.js | 10 -------- 3 files changed, 9 insertions(+), 67 deletions(-) delete mode 100644 src/main/main.js diff --git a/dist/main/index.js b/dist/main/index.js index 47a2ef6..0caccee 100644 --- a/dist/main/index.js +++ b/dist/main/index.js @@ -1,63 +1,16 @@ /******/ (() => { // webpackBootstrap -/******/ var __webpack_modules__ = ({ - -/***/ 110: -/***/ ((__unused_webpack_module, __unused_webpack_exports, __nccwpck_require__) => { - -/** - * The entrypoint for the action. - */ -const { run } = __nccwpck_require__(110) - -run() - - -/***/ }) - -/******/ }); -/************************************************************************/ -/******/ // The module cache -/******/ var __webpack_module_cache__ = {}; -/******/ -/******/ // The require function -/******/ function __nccwpck_require__(moduleId) { -/******/ // Check if module is in cache -/******/ var cachedModule = __webpack_module_cache__[moduleId]; -/******/ if (cachedModule !== undefined) { -/******/ return cachedModule.exports; -/******/ } -/******/ // Create a new module (and put it into the cache) -/******/ var module = __webpack_module_cache__[moduleId] = { -/******/ // no module.id needed -/******/ // no module.loaded needed -/******/ exports: {} -/******/ }; -/******/ -/******/ // Execute the module function -/******/ var threw = true; -/******/ try { -/******/ __webpack_modules__[moduleId](module, module.exports, __nccwpck_require__); -/******/ threw = false; -/******/ } finally { -/******/ if(threw) delete __webpack_module_cache__[moduleId]; -/******/ } -/******/ -/******/ // Return the exports of the module -/******/ return module.exports; -/******/ } -/******/ -/************************************************************************/ /******/ /* webpack/runtime/compat */ /******/ /******/ 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__(110); -/******/ module.exports = __webpack_exports__; -/******/ +var __webpack_exports__ = {}; +/** + * The entrypoint for the action. + */ + +console.log('post-run-action') + +module.exports = __webpack_exports__; /******/ })() ; \ No newline at end of file diff --git a/src/main/index.js b/src/main/index.js index c5bbde7..7652a3f 100644 --- a/src/main/index.js +++ b/src/main/index.js @@ -1,6 +1,5 @@ /** * The entrypoint for the action. */ -const { run } = require('.') -run() +console.log('post-run-action') diff --git a/src/main/main.js b/src/main/main.js deleted file mode 100644 index 070cf03..0000000 --- a/src/main/main.js +++ /dev/null @@ -1,10 +0,0 @@ -/** - * The main function for the action. - * @returns {Promise} Resolves when the action is complete. - */ -async function run() { -} - -module.exports = { - run -}