Skip to content

Commit

Permalink
Running a build ahead of release.
Browse files Browse the repository at this point in the history
  • Loading branch information
manchicken committed Feb 15, 2024
1 parent 713ae51 commit 4e1438a
Showing 1 changed file with 33 additions and 33 deletions.
66 changes: 33 additions & 33 deletions dist/index.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ var require_command = __commonJS({
}
});

// node_modules/@actions/core/node_modules/uuid/dist/esm-node/rng.js
// node_modules/uuid/dist/esm-node/rng.js
function rng() {
if (poolPtr > rnds8Pool.length - 16) {
import_crypto.default.randomFillSync(rnds8Pool);
Expand All @@ -161,34 +161,34 @@ function rng() {
}
var import_crypto, rnds8Pool, poolPtr;
var init_rng = __esm({
"node_modules/@actions/core/node_modules/uuid/dist/esm-node/rng.js"() {
"node_modules/uuid/dist/esm-node/rng.js"() {
import_crypto = __toESM(require("crypto"));
rnds8Pool = new Uint8Array(256);
poolPtr = rnds8Pool.length;
}
});

// node_modules/@actions/core/node_modules/uuid/dist/esm-node/regex.js
// node_modules/uuid/dist/esm-node/regex.js
var regex_default;
var init_regex = __esm({
"node_modules/@actions/core/node_modules/uuid/dist/esm-node/regex.js"() {
"node_modules/uuid/dist/esm-node/regex.js"() {
regex_default = /^(?:[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}|00000000-0000-0000-0000-000000000000)$/i;
}
});

// node_modules/@actions/core/node_modules/uuid/dist/esm-node/validate.js
// node_modules/uuid/dist/esm-node/validate.js
function validate(uuid) {
return typeof uuid === "string" && regex_default.test(uuid);
}
var validate_default;
var init_validate = __esm({
"node_modules/@actions/core/node_modules/uuid/dist/esm-node/validate.js"() {
"node_modules/uuid/dist/esm-node/validate.js"() {
init_regex();
validate_default = validate;
}
});

// node_modules/@actions/core/node_modules/uuid/dist/esm-node/stringify.js
// node_modules/uuid/dist/esm-node/stringify.js
function stringify(arr, offset = 0) {
const uuid = (byteToHex[arr[offset + 0]] + byteToHex[arr[offset + 1]] + byteToHex[arr[offset + 2]] + byteToHex[arr[offset + 3]] + "-" + byteToHex[arr[offset + 4]] + byteToHex[arr[offset + 5]] + "-" + byteToHex[arr[offset + 6]] + byteToHex[arr[offset + 7]] + "-" + byteToHex[arr[offset + 8]] + byteToHex[arr[offset + 9]] + "-" + byteToHex[arr[offset + 10]] + byteToHex[arr[offset + 11]] + byteToHex[arr[offset + 12]] + byteToHex[arr[offset + 13]] + byteToHex[arr[offset + 14]] + byteToHex[arr[offset + 15]]).toLowerCase();
if (!validate_default(uuid)) {
Expand All @@ -198,7 +198,7 @@ function stringify(arr, offset = 0) {
}
var byteToHex, stringify_default;
var init_stringify = __esm({
"node_modules/@actions/core/node_modules/uuid/dist/esm-node/stringify.js"() {
"node_modules/uuid/dist/esm-node/stringify.js"() {
init_validate();
byteToHex = [];
for (let i = 0; i < 256; ++i) {
Expand All @@ -208,7 +208,7 @@ var init_stringify = __esm({
}
});

// node_modules/@actions/core/node_modules/uuid/dist/esm-node/v1.js
// node_modules/uuid/dist/esm-node/v1.js
function v1(options, buf, offset) {
let i = buf && offset || 0;
const b = buf || new Array(16);
Expand Down Expand Up @@ -259,7 +259,7 @@ function v1(options, buf, offset) {
}
var _nodeId, _clockseq, _lastMSecs, _lastNSecs, v1_default;
var init_v1 = __esm({
"node_modules/@actions/core/node_modules/uuid/dist/esm-node/v1.js"() {
"node_modules/uuid/dist/esm-node/v1.js"() {
init_rng();
init_stringify();
_lastMSecs = 0;
Expand All @@ -268,7 +268,7 @@ var init_v1 = __esm({
}
});

// node_modules/@actions/core/node_modules/uuid/dist/esm-node/parse.js
// node_modules/uuid/dist/esm-node/parse.js
function parse(uuid) {
if (!validate_default(uuid)) {
throw TypeError("Invalid UUID");
Expand All @@ -295,13 +295,13 @@ function parse(uuid) {
}
var parse_default;
var init_parse = __esm({
"node_modules/@actions/core/node_modules/uuid/dist/esm-node/parse.js"() {
"node_modules/uuid/dist/esm-node/parse.js"() {
init_validate();
parse_default = parse;
}
});

// node_modules/@actions/core/node_modules/uuid/dist/esm-node/v35.js
// node_modules/uuid/dist/esm-node/v35.js
function stringToBytes(str) {
str = unescape(encodeURIComponent(str));
const bytes = [];
Expand Down Expand Up @@ -346,15 +346,15 @@ function v35_default(name, version2, hashfunc) {
}
var DNS, URL2;
var init_v35 = __esm({
"node_modules/@actions/core/node_modules/uuid/dist/esm-node/v35.js"() {
"node_modules/uuid/dist/esm-node/v35.js"() {
init_stringify();
init_parse();
DNS = "6ba7b810-9dad-11d1-80b4-00c04fd430c8";
URL2 = "6ba7b811-9dad-11d1-80b4-00c04fd430c8";
}
});

// node_modules/@actions/core/node_modules/uuid/dist/esm-node/md5.js
// node_modules/uuid/dist/esm-node/md5.js
function md5(bytes) {
if (Array.isArray(bytes)) {
bytes = Buffer.from(bytes);
Expand All @@ -365,24 +365,24 @@ function md5(bytes) {
}
var import_crypto2, md5_default;
var init_md5 = __esm({
"node_modules/@actions/core/node_modules/uuid/dist/esm-node/md5.js"() {
"node_modules/uuid/dist/esm-node/md5.js"() {
import_crypto2 = __toESM(require("crypto"));
md5_default = md5;
}
});

// node_modules/@actions/core/node_modules/uuid/dist/esm-node/v3.js
// node_modules/uuid/dist/esm-node/v3.js
var v3, v3_default;
var init_v3 = __esm({
"node_modules/@actions/core/node_modules/uuid/dist/esm-node/v3.js"() {
"node_modules/uuid/dist/esm-node/v3.js"() {
init_v35();
init_md5();
v3 = v35_default("v3", 48, md5_default);
v3_default = v3;
}
});

// node_modules/@actions/core/node_modules/uuid/dist/esm-node/v4.js
// node_modules/uuid/dist/esm-node/v4.js
function v4(options, buf, offset) {
options = options || {};
const rnds = options.random || (options.rng || rng)();
Expand All @@ -399,14 +399,14 @@ function v4(options, buf, offset) {
}
var v4_default;
var init_v4 = __esm({
"node_modules/@actions/core/node_modules/uuid/dist/esm-node/v4.js"() {
"node_modules/uuid/dist/esm-node/v4.js"() {
init_rng();
init_stringify();
v4_default = v4;
}
});

// node_modules/@actions/core/node_modules/uuid/dist/esm-node/sha1.js
// node_modules/uuid/dist/esm-node/sha1.js
function sha1(bytes) {
if (Array.isArray(bytes)) {
bytes = Buffer.from(bytes);
Expand All @@ -417,32 +417,32 @@ function sha1(bytes) {
}
var import_crypto3, sha1_default;
var init_sha1 = __esm({
"node_modules/@actions/core/node_modules/uuid/dist/esm-node/sha1.js"() {
"node_modules/uuid/dist/esm-node/sha1.js"() {
import_crypto3 = __toESM(require("crypto"));
sha1_default = sha1;
}
});

// node_modules/@actions/core/node_modules/uuid/dist/esm-node/v5.js
// node_modules/uuid/dist/esm-node/v5.js
var v5, v5_default;
var init_v5 = __esm({
"node_modules/@actions/core/node_modules/uuid/dist/esm-node/v5.js"() {
"node_modules/uuid/dist/esm-node/v5.js"() {
init_v35();
init_sha1();
v5 = v35_default("v5", 80, sha1_default);
v5_default = v5;
}
});

// node_modules/@actions/core/node_modules/uuid/dist/esm-node/nil.js
// node_modules/uuid/dist/esm-node/nil.js
var nil_default;
var init_nil = __esm({
"node_modules/@actions/core/node_modules/uuid/dist/esm-node/nil.js"() {
"node_modules/uuid/dist/esm-node/nil.js"() {
nil_default = "00000000-0000-0000-0000-000000000000";
}
});

// node_modules/@actions/core/node_modules/uuid/dist/esm-node/version.js
// node_modules/uuid/dist/esm-node/version.js
function version(uuid) {
if (!validate_default(uuid)) {
throw TypeError("Invalid UUID");
Expand All @@ -451,13 +451,13 @@ function version(uuid) {
}
var version_default;
var init_version = __esm({
"node_modules/@actions/core/node_modules/uuid/dist/esm-node/version.js"() {
"node_modules/uuid/dist/esm-node/version.js"() {
init_validate();
version_default = version;
}
});

// node_modules/@actions/core/node_modules/uuid/dist/esm-node/index.js
// node_modules/uuid/dist/esm-node/index.js
var esm_node_exports = {};
__export(esm_node_exports, {
NIL: () => nil_default,
Expand All @@ -471,7 +471,7 @@ __export(esm_node_exports, {
version: () => version_default
});
var init_esm_node = __esm({
"node_modules/@actions/core/node_modules/uuid/dist/esm-node/index.js"() {
"node_modules/uuid/dist/esm-node/index.js"() {
init_v1();
init_v3();
init_v4();
Expand Down Expand Up @@ -18627,7 +18627,7 @@ var require_lodash = __commonJS({
}
return new LodashWrapper(value);
}
var baseCreate = /* @__PURE__ */ function() {
var baseCreate = function() {
function object() {
}
return function(proto) {
Expand Down Expand Up @@ -21934,7 +21934,7 @@ var require_lodash = __commonJS({
var gte = createRelationalOperation(function(value, other) {
return value >= other;
});
var isArguments = baseIsArguments(/* @__PURE__ */ function() {
var isArguments = baseIsArguments(function() {
return arguments;
}()) ? baseIsArguments : function(value) {
return isObjectLike(value) && hasOwnProperty.call(value, "callee") && !propertyIsEnumerable.call(value, "callee");
Expand Down Expand Up @@ -23703,7 +23703,7 @@ var require_directives = __commonJS({
onError("Verbatim tags must end with a >");
return verbatim;
}
const [, handle, suffix] = source.match(/^(.*!)([^!]*)$/s);
const [, handle, suffix] = source.match(/^(.*!)([^!]*)$/);
if (!suffix)
onError(`The ${source} tag has no suffix`);
const prefix = this.tags[handle];
Expand Down

0 comments on commit 4e1438a

Please sign in to comment.