@@ -3,43 +3,25 @@ var __getProtoOf = Object.getPrototypeOf;
33var __defProp = Object.defineProperty;
44var __getOwnPropNames = Object.getOwnPropertyNames;
55var __hasOwnProp = Object.prototype.hasOwnProperty;
6- function __accessProp(key) {
7- return this[key];
8- }
9- var __toESMCache_node;
10- var __toESMCache_esm;
116var __toESM = (mod, isNodeMode, target) => {
12- var canCache = mod != null && typeof mod === "object";
13- if (canCache) {
14- var cache = isNodeMode ? __toESMCache_node ??= new WeakMap : __toESMCache_esm ??= new WeakMap;
15- var cached = cache.get(mod);
16- if (cached)
17- return cached;
18- }
197 target = mod != null ? __create(__getProtoOf(mod)) : {};
208 const to = isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target;
219 for (let key of __getOwnPropNames(mod))
2210 if (!__hasOwnProp.call(to, key))
2311 __defProp(to, key, {
24- get: __accessProp.bind(mod, key) ,
12+ get: () => mod[ key] ,
2513 enumerable: true
2614 });
27- if (canCache)
28- cache.set(mod, to);
2915 return to;
3016};
3117var __commonJS = (cb, mod) => () => (mod || cb((mod = { exports: {} }).exports, mod), mod.exports);
32- var __returnValue = (v) => v;
33- function __exportSetter(name, newValue) {
34- this[name] = __returnValue.bind(null, newValue);
35- }
3618var __export = (target, all) => {
3719 for (var name in all)
3820 __defProp(target, name, {
3921 get: all[name],
4022 enumerable: true,
4123 configurable: true,
42- set: __exportSetter.bind(all, name)
24+ set: (newValue) => all[ name] = () => newValue
4325 });
4426};
4527
@@ -3465,7 +3447,7 @@ var require_constants2 = __commonJS((exports2, module2) => {
34653447 }
34663448 })();
34673449 var channel;
3468- var structuredClone = globalThis.structuredClone ?? function structuredClone2 (value, options = undefined) {
3450+ var structuredClone = globalThis.structuredClone ?? function structuredClone (value, options = undefined) {
34693451 if (arguments.length === 0) {
34703452 throw new TypeError("missing argument");
34713453 }
@@ -16390,7 +16372,7 @@ var require_undici = __commonJS((exports2, module2) => {
1639016372 module2.exports.getGlobalDispatcher = getGlobalDispatcher;
1639116373 if (util.nodeMajor > 16 || util.nodeMajor === 16 && util.nodeMinor >= 8) {
1639216374 let fetchImpl = null;
16393- module2.exports.fetch = async function fetch2 (resource) {
16375+ module2.exports.fetch = async function fetch (resource) {
1639416376 if (!fetchImpl) {
1639516377 fetchImpl = require_fetch().fetch;
1639616378 }
@@ -22726,11 +22708,11 @@ var require_github = __commonJS((exports2) => {
2272622708});
2272722709
2272822710// src/index.ts
22729- var core2 = __toESM(require_core(), 1 );
22730- var github = __toESM(require_github(), 1 );
22711+ var core2 = __toESM(require_core());
22712+ var github = __toESM(require_github());
2273122713
2273222714// src/action.ts
22733- var core = __toESM(require_core(), 1 );
22715+ var core = __toESM(require_core());
2273422716
2273522717// node_modules/zod/v3/external.js
2273622718var exports_external = {};
0 commit comments