diff --git a/dist/index.js b/dist/index.js index f366622..beb3a5a 100644 --- a/dist/index.js +++ b/dist/index.js @@ -1,7 +1,7 @@ /******/ (() => { // webpackBootstrap /******/ var __webpack_modules__ = ({ -/***/ 561: +/***/ 191: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; @@ -31,8 +31,8 @@ var __importStar = (this && this.__importStar) || function (mod) { }; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.issue = exports.issueCommand = void 0; -const os = __importStar(__nccwpck_require__(37)); -const utils_1 = __nccwpck_require__(691); +const os = __importStar(__nccwpck_require__(857)); +const utils_1 = __nccwpck_require__(283); /** * Commands * @@ -104,7 +104,7 @@ function escapeProperty(s) { /***/ }), -/***/ 407: +/***/ 999: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; @@ -143,12 +143,12 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge }; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.platform = exports.toPlatformPath = exports.toWin32Path = exports.toPosixPath = exports.markdownSummary = exports.summary = exports.getIDToken = exports.getState = exports.saveState = exports.group = exports.endGroup = exports.startGroup = exports.info = exports.notice = exports.warning = exports.error = exports.debug = exports.isDebug = exports.setFailed = exports.setCommandEcho = exports.setOutput = exports.getBooleanInput = exports.getMultilineInput = exports.getInput = exports.addPath = exports.setSecret = exports.exportVariable = exports.ExitCode = void 0; -const command_1 = __nccwpck_require__(561); -const file_command_1 = __nccwpck_require__(982); -const utils_1 = __nccwpck_require__(691); -const os = __importStar(__nccwpck_require__(37)); -const path = __importStar(__nccwpck_require__(17)); -const oidc_utils_1 = __nccwpck_require__(318); +const command_1 = __nccwpck_require__(191); +const file_command_1 = __nccwpck_require__(58); +const utils_1 = __nccwpck_require__(283); +const os = __importStar(__nccwpck_require__(857)); +const path = __importStar(__nccwpck_require__(928)); +const oidc_utils_1 = __nccwpck_require__(549); /** * The code to exit an action */ @@ -433,29 +433,29 @@ exports.getIDToken = getIDToken; /** * Summary exports */ -var summary_1 = __nccwpck_require__(970); +var summary_1 = __nccwpck_require__(638); Object.defineProperty(exports, "summary", ({ enumerable: true, get: function () { return summary_1.summary; } })); /** * @deprecated use core.summary */ -var summary_2 = __nccwpck_require__(970); +var summary_2 = __nccwpck_require__(638); Object.defineProperty(exports, "markdownSummary", ({ enumerable: true, get: function () { return summary_2.markdownSummary; } })); /** * Path exports */ -var path_utils_1 = __nccwpck_require__(711); +var path_utils_1 = __nccwpck_require__(539); Object.defineProperty(exports, "toPosixPath", ({ enumerable: true, get: function () { return path_utils_1.toPosixPath; } })); Object.defineProperty(exports, "toWin32Path", ({ enumerable: true, get: function () { return path_utils_1.toWin32Path; } })); Object.defineProperty(exports, "toPlatformPath", ({ enumerable: true, get: function () { return path_utils_1.toPlatformPath; } })); /** * Platform utilities exports */ -exports.platform = __importStar(__nccwpck_require__(170)); +exports.platform = __importStar(__nccwpck_require__(563)); //# sourceMappingURL=core.js.map /***/ }), -/***/ 982: +/***/ 58: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; @@ -488,10 +488,10 @@ Object.defineProperty(exports, "__esModule", ({ value: true })); exports.prepareKeyValueMessage = exports.issueFileCommand = void 0; // We use any as a valid input type /* eslint-disable @typescript-eslint/no-explicit-any */ -const crypto = __importStar(__nccwpck_require__(113)); -const fs = __importStar(__nccwpck_require__(147)); -const os = __importStar(__nccwpck_require__(37)); -const utils_1 = __nccwpck_require__(691); +const crypto = __importStar(__nccwpck_require__(982)); +const fs = __importStar(__nccwpck_require__(896)); +const os = __importStar(__nccwpck_require__(857)); +const utils_1 = __nccwpck_require__(283); function issueFileCommand(command, message) { const filePath = process.env[`GITHUB_${command}`]; if (!filePath) { @@ -524,7 +524,7 @@ exports.prepareKeyValueMessage = prepareKeyValueMessage; /***/ }), -/***/ 318: +/***/ 549: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; @@ -540,9 +540,9 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge }; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.OidcClient = void 0; -const http_client_1 = __nccwpck_require__(781); -const auth_1 = __nccwpck_require__(903); -const core_1 = __nccwpck_require__(407); +const http_client_1 = __nccwpck_require__(571); +const auth_1 = __nccwpck_require__(689); +const core_1 = __nccwpck_require__(999); class OidcClient { static createHttpClient(allowRetry = true, maxRetry = 10) { const requestOptions = { @@ -608,7 +608,7 @@ exports.OidcClient = OidcClient; /***/ }), -/***/ 711: +/***/ 539: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; @@ -638,7 +638,7 @@ var __importStar = (this && this.__importStar) || function (mod) { }; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.toPlatformPath = exports.toWin32Path = exports.toPosixPath = void 0; -const path = __importStar(__nccwpck_require__(17)); +const path = __importStar(__nccwpck_require__(928)); /** * toPosixPath converts the given path to the posix form. On Windows, \\ will be * replaced with /. @@ -677,7 +677,7 @@ exports.toPlatformPath = toPlatformPath; /***/ }), -/***/ 170: +/***/ 563: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; @@ -719,8 +719,8 @@ var __importDefault = (this && this.__importDefault) || function (mod) { }; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.getDetails = exports.isLinux = exports.isMacOS = exports.isWindows = exports.arch = exports.platform = void 0; -const os_1 = __importDefault(__nccwpck_require__(37)); -const exec = __importStar(__nccwpck_require__(775)); +const os_1 = __importDefault(__nccwpck_require__(857)); +const exec = __importStar(__nccwpck_require__(872)); const getWindowsInfo = () => __awaiter(void 0, void 0, void 0, function* () { const { stdout: version } = yield exec.getExecOutput('powershell -command "(Get-CimInstance -ClassName Win32_OperatingSystem).Version"', undefined, { silent: true @@ -778,7 +778,7 @@ exports.getDetails = getDetails; /***/ }), -/***/ 970: +/***/ 638: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; @@ -794,8 +794,8 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge }; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.summary = exports.markdownSummary = exports.SUMMARY_DOCS_URL = exports.SUMMARY_ENV_VAR = void 0; -const os_1 = __nccwpck_require__(37); -const fs_1 = __nccwpck_require__(147); +const os_1 = __nccwpck_require__(857); +const fs_1 = __nccwpck_require__(896); const { access, appendFile, writeFile } = fs_1.promises; exports.SUMMARY_ENV_VAR = 'GITHUB_STEP_SUMMARY'; exports.SUMMARY_DOCS_URL = 'https://docs.github.com/actions/using-workflows/workflow-commands-for-github-actions#adding-a-job-summary'; @@ -1068,7 +1068,7 @@ exports.summary = _summary; /***/ }), -/***/ 691: +/***/ 283: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -1115,7 +1115,7 @@ exports.toCommandProperties = toCommandProperties; /***/ }), -/***/ 775: +/***/ 872: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; @@ -1150,8 +1150,8 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge }; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.getExecOutput = exports.exec = void 0; -const string_decoder_1 = __nccwpck_require__(576); -const tr = __importStar(__nccwpck_require__(374)); +const string_decoder_1 = __nccwpck_require__(193); +const tr = __importStar(__nccwpck_require__(725)); /** * Exec a command. * Output will be streamed to the live console. @@ -1225,7 +1225,7 @@ exports.getExecOutput = getExecOutput; /***/ }), -/***/ 374: +/***/ 725: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; @@ -1260,13 +1260,13 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge }; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.argStringToArray = exports.ToolRunner = void 0; -const os = __importStar(__nccwpck_require__(37)); -const events = __importStar(__nccwpck_require__(361)); -const child = __importStar(__nccwpck_require__(81)); -const path = __importStar(__nccwpck_require__(17)); -const io = __importStar(__nccwpck_require__(826)); -const ioUtil = __importStar(__nccwpck_require__(446)); -const timers_1 = __nccwpck_require__(512); +const os = __importStar(__nccwpck_require__(857)); +const events = __importStar(__nccwpck_require__(434)); +const child = __importStar(__nccwpck_require__(317)); +const path = __importStar(__nccwpck_require__(928)); +const io = __importStar(__nccwpck_require__(357)); +const ioUtil = __importStar(__nccwpck_require__(746)); +const timers_1 = __nccwpck_require__(557); /* eslint-disable @typescript-eslint/unbound-method */ const IS_WINDOWS = process.platform === 'win32'; /* @@ -1850,7 +1850,7 @@ class ExecState extends events.EventEmitter { /***/ }), -/***/ 903: +/***/ 689: /***/ (function(__unused_webpack_module, exports) { "use strict"; @@ -1938,7 +1938,7 @@ exports.PersonalAccessTokenCredentialHandler = PersonalAccessTokenCredentialHand /***/ }), -/***/ 781: +/***/ 571: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; @@ -1974,10 +1974,10 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge }; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.HttpClient = exports.isHttps = exports.HttpClientResponse = exports.HttpClientError = exports.getProxyUrl = exports.MediaTypes = exports.Headers = exports.HttpCodes = void 0; -const http = __importStar(__nccwpck_require__(685)); -const https = __importStar(__nccwpck_require__(687)); -const pm = __importStar(__nccwpck_require__(117)); -const tunnel = __importStar(__nccwpck_require__(225)); +const http = __importStar(__nccwpck_require__(611)); +const https = __importStar(__nccwpck_require__(692)); +const pm = __importStar(__nccwpck_require__(863)); +const tunnel = __importStar(__nccwpck_require__(124)); var HttpCodes; (function (HttpCodes) { HttpCodes[HttpCodes["OK"] = 200] = "OK"; @@ -2550,7 +2550,7 @@ const lowercaseKeys = (obj) => Object.keys(obj).reduce((c, k) => ((c[k.toLowerCa /***/ }), -/***/ 117: +/***/ 863: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -2618,7 +2618,7 @@ exports.checkBypass = checkBypass; /***/ }), -/***/ 446: +/***/ 746: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; @@ -2654,8 +2654,8 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge var _a; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.getCmdPath = exports.tryGetExecutablePath = exports.isRooted = exports.isDirectory = exports.exists = exports.READONLY = exports.UV_FS_O_EXLOCK = exports.IS_WINDOWS = exports.unlink = exports.symlink = exports.stat = exports.rmdir = exports.rm = exports.rename = exports.readlink = exports.readdir = exports.open = exports.mkdir = exports.lstat = exports.copyFile = exports.chmod = void 0; -const fs = __importStar(__nccwpck_require__(147)); -const path = __importStar(__nccwpck_require__(17)); +const fs = __importStar(__nccwpck_require__(896)); +const path = __importStar(__nccwpck_require__(928)); _a = fs.promises // export const {open} = 'fs' , exports.chmod = _a.chmod, exports.copyFile = _a.copyFile, exports.lstat = _a.lstat, exports.mkdir = _a.mkdir, exports.open = _a.open, exports.readdir = _a.readdir, exports.readlink = _a.readlink, exports.rename = _a.rename, exports.rm = _a.rm, exports.rmdir = _a.rmdir, exports.stat = _a.stat, exports.symlink = _a.symlink, exports.unlink = _a.unlink; @@ -2808,7 +2808,7 @@ exports.getCmdPath = getCmdPath; /***/ }), -/***/ 826: +/***/ 357: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; @@ -2843,9 +2843,9 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge }; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.findInPath = exports.which = exports.mkdirP = exports.rmRF = exports.mv = exports.cp = void 0; -const assert_1 = __nccwpck_require__(491); -const path = __importStar(__nccwpck_require__(17)); -const ioUtil = __importStar(__nccwpck_require__(446)); +const assert_1 = __nccwpck_require__(613); +const path = __importStar(__nccwpck_require__(928)); +const ioUtil = __importStar(__nccwpck_require__(746)); /** * Copies a file or folder. * Based off of shelljs - https://github.com/shelljs/shelljs/blob/9237f66c52e5daa40458f94f9565e18e8132f5a6/src/cp.js @@ -3114,7 +3114,7 @@ function copyFile(srcFile, destFile, force) { /***/ }), -/***/ 639: +/***/ 602: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -3123,12 +3123,12 @@ function __export(m) { for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p]; } Object.defineProperty(exports, "__esModule", ({ value: true })); -__export(__nccwpck_require__(314)); +__export(__nccwpck_require__(339)); //# sourceMappingURL=index.js.map /***/ }), -/***/ 314: +/***/ 339: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; @@ -3137,8 +3137,8 @@ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", ({ value: true })); -const fs_1 = __nccwpck_require__(147); -const debug_1 = __importDefault(__nccwpck_require__(472)); +const fs_1 = __nccwpck_require__(896); +const debug_1 = __importDefault(__nccwpck_require__(135)); const log = debug_1.default('@kwsites/file-exists'); function check(path, isFile, isDirectory) { log(`checking %s`, path); @@ -3190,14 +3190,14 @@ exports.READABLE = exports.FILE + exports.FOLDER; /***/ }), -/***/ 156: +/***/ 560: /***/ ((__unused_webpack_module, exports) => { "use strict"; var __webpack_unused_export__; __webpack_unused_export__ = ({ value: true }); -exports.dD = exports.gX = void 0; +exports.ud = exports.yX = void 0; /** * Creates a new `DeferredPromise` * @@ -3235,7 +3235,7 @@ function deferred() { }, }; } -exports.gX = deferred; +exports.yX = deferred; /** * Alias of the exported `deferred` function, to help consumers wanting to use `deferred` as the * local variable name rather than the factory import name, without needing to rename on import. @@ -3244,7 +3244,7 @@ exports.gX = deferred; import {createDeferred} from '@kwsites/promise-deferred`; ``` */ -exports.dD = deferred; +exports.ud = deferred; /** * Default export allows use as: * @@ -3257,7 +3257,7 @@ __webpack_unused_export__ = deferred; /***/ }), -/***/ 777: +/***/ 675: /***/ ((module, exports, __nccwpck_require__) => { /* eslint-env browser */ @@ -3514,7 +3514,7 @@ function localstorage() { } } -module.exports = __nccwpck_require__(598)(exports); +module.exports = __nccwpck_require__(342)(exports); const {formatters} = module.exports; @@ -3533,7 +3533,7 @@ formatters.j = function (v) { /***/ }), -/***/ 598: +/***/ 342: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { @@ -3549,7 +3549,7 @@ function setup(env) { createDebug.disable = disable; createDebug.enable = enable; createDebug.enabled = enabled; - createDebug.humanize = __nccwpck_require__(717); + createDebug.humanize = __nccwpck_require__(889); createDebug.destroy = destroy; Object.keys(env).forEach(key => { @@ -3814,7 +3814,7 @@ module.exports = setup; /***/ }), -/***/ 472: +/***/ 135: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { /** @@ -3823,23 +3823,23 @@ module.exports = setup; */ if (typeof process === 'undefined' || process.type === 'renderer' || process.browser === true || process.__nwjs) { - module.exports = __nccwpck_require__(777); + module.exports = __nccwpck_require__(675); } else { - module.exports = __nccwpck_require__(916); + module.exports = __nccwpck_require__(87); } /***/ }), -/***/ 916: +/***/ 87: /***/ ((module, exports, __nccwpck_require__) => { /** * Module dependencies. */ -const tty = __nccwpck_require__(224); -const util = __nccwpck_require__(837); +const tty = __nccwpck_require__(18); +const util = __nccwpck_require__(23); /** * This is the Node.js implementation of `debug()`. @@ -3865,7 +3865,7 @@ exports.colors = [6, 2, 3, 4, 5, 1]; try { // Optional dependency (as in, doesn't need to be installed, NOT like optionalDependencies in package.json) // eslint-disable-next-line import/no-extraneous-dependencies - const supportsColor = __nccwpck_require__(516); + const supportsColor = __nccwpck_require__(953); if (supportsColor && (supportsColor.stderr || supportsColor).level >= 2) { exports.colors = [ @@ -4073,7 +4073,7 @@ function init(debug) { } } -module.exports = __nccwpck_require__(598)(exports); +module.exports = __nccwpck_require__(342)(exports); const {formatters} = module.exports; @@ -4101,7 +4101,7 @@ formatters.O = function (v) { /***/ }), -/***/ 508: +/***/ 474: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -4142,10 +4142,10 @@ exports.htmlUnescapeTag = (strings, ...values) => { /***/ }), -/***/ 947: +/***/ 626: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -const pupa = __nccwpck_require__(651) +const pupa = __nccwpck_require__(720) const DEFAULT_FORMAT = '{title} #{number}' @@ -4197,7 +4197,7 @@ const extractSquashedPR = line => { /***/ }), -/***/ 70: +/***/ 330: /***/ ((module) => { "use strict"; @@ -4213,7 +4213,7 @@ module.exports = (flag, argv = process.argv) => { /***/ }), -/***/ 717: +/***/ 889: /***/ ((module) => { /** @@ -4382,12 +4382,12 @@ function plural(ms, msAbs, n, name) { /***/ }), -/***/ 651: +/***/ 720: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; -const {htmlEscape} = __nccwpck_require__(508); +const {htmlEscape} = __nccwpck_require__(474); module.exports = (template, data) => { if (typeof template !== 'string') { @@ -4429,14 +4429,14 @@ module.exports = (template, data) => { /***/ }), -/***/ 516: +/***/ 953: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; -const os = __nccwpck_require__(37); -const tty = __nccwpck_require__(224); -const hasFlag = __nccwpck_require__(70); +const os = __nccwpck_require__(857); +const tty = __nccwpck_require__(18); +const hasFlag = __nccwpck_require__(330); const {env} = process; @@ -4572,27 +4572,27 @@ module.exports = { /***/ }), -/***/ 225: +/***/ 124: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -module.exports = __nccwpck_require__(30); +module.exports = __nccwpck_require__(660); /***/ }), -/***/ 30: +/***/ 660: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; -var net = __nccwpck_require__(808); -var tls = __nccwpck_require__(404); -var http = __nccwpck_require__(685); -var https = __nccwpck_require__(687); -var events = __nccwpck_require__(361); -var assert = __nccwpck_require__(491); -var util = __nccwpck_require__(837); +var net = __nccwpck_require__(278); +var tls = __nccwpck_require__(756); +var http = __nccwpck_require__(611); +var https = __nccwpck_require__(692); +var events = __nccwpck_require__(434); +var assert = __nccwpck_require__(613); +var util = __nccwpck_require__(23); exports.httpOverHttp = httpOverHttp; @@ -4852,7 +4852,7 @@ exports.debug = debug; // for test /***/ }), -/***/ 491: +/***/ 613: /***/ ((module) => { "use strict"; @@ -4860,7 +4860,7 @@ module.exports = require("assert"); /***/ }), -/***/ 81: +/***/ 317: /***/ ((module) => { "use strict"; @@ -4868,7 +4868,7 @@ module.exports = require("child_process"); /***/ }), -/***/ 113: +/***/ 982: /***/ ((module) => { "use strict"; @@ -4876,7 +4876,7 @@ module.exports = require("crypto"); /***/ }), -/***/ 361: +/***/ 434: /***/ ((module) => { "use strict"; @@ -4884,7 +4884,7 @@ module.exports = require("events"); /***/ }), -/***/ 147: +/***/ 896: /***/ ((module) => { "use strict"; @@ -4892,7 +4892,7 @@ module.exports = require("fs"); /***/ }), -/***/ 685: +/***/ 611: /***/ ((module) => { "use strict"; @@ -4900,7 +4900,7 @@ module.exports = require("http"); /***/ }), -/***/ 687: +/***/ 692: /***/ ((module) => { "use strict"; @@ -4908,7 +4908,7 @@ module.exports = require("https"); /***/ }), -/***/ 808: +/***/ 278: /***/ ((module) => { "use strict"; @@ -4916,7 +4916,7 @@ module.exports = require("net"); /***/ }), -/***/ 37: +/***/ 857: /***/ ((module) => { "use strict"; @@ -4924,7 +4924,7 @@ module.exports = require("os"); /***/ }), -/***/ 17: +/***/ 928: /***/ ((module) => { "use strict"; @@ -4932,7 +4932,7 @@ module.exports = require("path"); /***/ }), -/***/ 576: +/***/ 193: /***/ ((module) => { "use strict"; @@ -4940,7 +4940,7 @@ module.exports = require("string_decoder"); /***/ }), -/***/ 512: +/***/ 557: /***/ ((module) => { "use strict"; @@ -4948,7 +4948,7 @@ module.exports = require("timers"); /***/ }), -/***/ 404: +/***/ 756: /***/ ((module) => { "use strict"; @@ -4956,7 +4956,7 @@ module.exports = require("tls"); /***/ }), -/***/ 224: +/***/ 18: /***/ ((module) => { "use strict"; @@ -4964,7 +4964,7 @@ module.exports = require("tty"); /***/ }), -/***/ 837: +/***/ 23: /***/ ((module) => { "use strict"; @@ -5034,17 +5034,6 @@ module.exports = require("util"); /******/ __nccwpck_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop)) /******/ })(); /******/ -/******/ /* webpack/runtime/make namespace object */ -/******/ (() => { -/******/ // define __esModule on exports -/******/ __nccwpck_require__.r = (exports) => { -/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) { -/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' }); -/******/ } -/******/ Object.defineProperty(exports, '__esModule', { value: true }); -/******/ }; -/******/ })(); -/******/ /******/ /* webpack/runtime/compat */ /******/ /******/ if (typeof __nccwpck_require__ !== 'undefined') __nccwpck_require__.ab = __dirname + "/"; @@ -5054,22 +5043,20 @@ var __webpack_exports__ = {}; // This entry need to be wrapped in an IIFE because it need to be in strict mode. (() => { "use strict"; -// ESM COMPAT FLAG -__nccwpck_require__.r(__webpack_exports__); // EXTERNAL MODULE: ./node_modules/.pnpm/@actions+core@1.11.1/node_modules/@actions/core/lib/core.js -var core = __nccwpck_require__(407); +var core = __nccwpck_require__(999); // EXTERNAL MODULE: ./node_modules/.pnpm/extract-pr-titles@1.1.0/node_modules/extract-pr-titles/index.js -var extract_pr_titles = __nccwpck_require__(947); +var extract_pr_titles = __nccwpck_require__(626); var extract_pr_titles_default = /*#__PURE__*/__nccwpck_require__.n(extract_pr_titles); // EXTERNAL MODULE: ./node_modules/.pnpm/@kwsites+file-exists@1.1.1/node_modules/@kwsites/file-exists/dist/index.js -var dist = __nccwpck_require__(639); +var dist = __nccwpck_require__(602); // EXTERNAL MODULE: ./node_modules/.pnpm/debug@4.3.5/node_modules/debug/src/index.js -var src = __nccwpck_require__(472); +var src = __nccwpck_require__(135); // EXTERNAL MODULE: external "child_process" -var external_child_process_ = __nccwpck_require__(81); +var external_child_process_ = __nccwpck_require__(317); // EXTERNAL MODULE: ./node_modules/.pnpm/@kwsites+promise-deferred@1.1.1/node_modules/@kwsites/promise-deferred/dist/index.js -var promise_deferred_dist = __nccwpck_require__(156); +var promise_deferred_dist = __nccwpck_require__(560); ;// CONCATENATED MODULE: external "node:events" const external_node_events_namespaceObject = require("node:events"); ;// CONCATENATED MODULE: ./node_modules/.pnpm/simple-git@3.27.0/node_modules/simple-git/dist/esm/index.js @@ -8167,7 +8154,7 @@ var init_scheduler = __esm({ let id = 0; return () => { id++; - const { promise, done } = (0,promise_deferred_dist/* createDeferred */.dD)(); + const { promise, done } = (0,promise_deferred_dist/* createDeferred */.ud)(); return { promise, done, @@ -9403,7 +9390,7 @@ function commandConfigPrefixingPlugin(configuration) { // src/lib/plugins/completion-detection.plugin.ts init_utils(); -var never = (0,promise_deferred_dist/* deferred */.gX)().promise; +var never = (0,promise_deferred_dist/* deferred */.yX)().promise; function completionDetectionPlugin({ onClose = true, onExit = 50 @@ -9411,10 +9398,10 @@ function completionDetectionPlugin({ function createEvents() { let exitCode = -1; const events = { - close: (0,promise_deferred_dist/* deferred */.gX)(), - closeTimeout: (0,promise_deferred_dist/* deferred */.gX)(), - exit: (0,promise_deferred_dist/* deferred */.gX)(), - exitTimeout: (0,promise_deferred_dist/* deferred */.gX)() + close: (0,promise_deferred_dist/* deferred */.yX)(), + closeTimeout: (0,promise_deferred_dist/* deferred */.yX)(), + exit: (0,promise_deferred_dist/* deferred */.yX)(), + exitTimeout: (0,promise_deferred_dist/* deferred */.yX)() }; const result = Promise.race([ onClose === false ? never : events.closeTimeout.promise, diff --git a/package.json b/package.json index fce08d7..4e08a4a 100644 --- a/package.json +++ b/package.json @@ -17,7 +17,7 @@ }, "devDependencies": { "@eslint/js": "^9.0.0", - "@vercel/ncc": "0.38.1", + "@vercel/ncc": "0.38.3", "eslint": "9.18.0", "prettier": "3.4.2" }, diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 7d625f1..e32c618 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -22,8 +22,8 @@ importers: specifier: ^9.0.0 version: 9.18.0 '@vercel/ncc': - specifier: 0.38.1 - version: 0.38.1 + specifier: 0.38.3 + version: 0.38.3 eslint: specifier: 9.18.0 version: 9.18.0 @@ -115,8 +115,8 @@ packages: '@types/json-schema@7.0.15': resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} - '@vercel/ncc@0.38.1': - resolution: {integrity: sha512-IBBb+iI2NLu4VQn3Vwldyi2QwaXt5+hTyh58ggAMoCGE6DJmPvwL3KPBWcJl1m9LYPChBLE980Jw+CS4Wokqxw==} + '@vercel/ncc@0.38.3': + resolution: {integrity: sha512-rnK6hJBS6mwc+Bkab+PGPs9OiS0i/3kdTO+CkI8V0/VrW3vmz7O2Pxjw/owOlmo6PKEIxRSeZKv/kuL9itnpYA==} hasBin: true acorn-jsx@5.3.2: @@ -516,7 +516,7 @@ snapshots: '@types/json-schema@7.0.15': {} - '@vercel/ncc@0.38.1': {} + '@vercel/ncc@0.38.3': {} acorn-jsx@5.3.2(acorn@8.14.0): dependencies: