diff --git a/build.json b/build.json index cff3c5be..e6ac3304 100644 --- a/build.json +++ b/build.json @@ -1 +1 @@ -{"owner":"technote-space","repo":"get-diff-action","sha":"FETCH_HEAD","ref":"refs/heads/master","tagName":"test/v6.1.1","branch":"gh-actions","tags":["test/v6.1.1","test/v6.1","test/v6"],"updated_at":"2022-10-14T16:21:44.393Z"} \ No newline at end of file +{"owner":"technote-space","repo":"get-diff-action","sha":"FETCH_HEAD","ref":"refs/heads/master","tagName":"test/v6.1.1","branch":"gh-actions","tags":["test/v6.1.1","test/v6.1","test/v6"],"updated_at":"2022-10-16T08:21:55.823Z"} \ No newline at end of file diff --git a/lib/main.js b/lib/main.js index 007ac48e..7185edbd 100644 --- a/lib/main.js +++ b/lib/main.js @@ -131,7 +131,7 @@ function issue(name, message = '') { } command$1.issue = issue; const CMD_STRING = '::'; -class Command$1 { +let Command$1 = class Command { constructor(command, properties, message) { if (!command) { command = 'missing.command'; @@ -163,7 +163,7 @@ class Command$1 { cmdStr += `${CMD_STRING}${escapeData(this.message)}`; return cmdStr; } -} +}; function escapeData(s) { return utils_1$2.toCommandValue(s) .replace(/%/g, '%25') @@ -2619,7 +2619,7 @@ Object.defineProperty(context, "__esModule", { value: true }); var Context_1 = context.Context = void 0; const fs_1 = fs$1; const os_1 = require$$0; -class Context$1 { +let Context$1 = class Context { /** * Hydrate the context from the environment */ @@ -2665,7 +2665,7 @@ class Context$1 { } throw new Error("context.repo requires a GITHUB_REPOSITORY environment variable like 'owner/repo'"); } -} +}; Context_1 = context.Context = Context$1; const getBoolValue$1 = (input) => !['false', '0', '', 'no', 'n'].includes(input.trim().toLowerCase());