Skip to content

Commit

Permalink
feat(release): release v1.0.28
Browse files Browse the repository at this point in the history
  • Loading branch information
JPBM135 committed Jan 18, 2024
1 parent 5862910 commit b394bdf
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
9 changes: 6 additions & 3 deletions dist/index.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -20104,9 +20104,12 @@ function validatePolyfillNeeds(modulesToInstall) {

// src/index.ts
async function main() {
const IGNORE = core3.getInput("ignored")?.split(",").map((module) => module.trim()).filter(Boolean) ?? [];
const INCLUDES = core3.getInput("includes")?.split(",").map((module) => module.trim()).filter(Boolean) ?? [];
const SKIP_DEFAULTS = core3.getBooleanInput("skip-defaults") ?? false;
const IGNORE = core3.getInput("ignored", { required: false, trimWhitespace: true })?.split(",").filter(Boolean) ?? [];
const INCLUDES = core3.getInput("includes", { required: false, trimWhitespace: true })?.split(",").filter(Boolean) ?? [];
const SKIP_DEFAULTS = core3.getInput("skip-defaults") ? core3.getBooleanInput("skip-defaults", {
required: false,
trimWhitespace: true
}) : false;
try {
const platform = os.platform();
if (platform !== "linux") {
Expand Down
4 changes: 2 additions & 2 deletions dist/index.mjs.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jpbm135/self-hosted-action-polyfill",
"version": "1.0.27",
"version": "1.0.28",
"description": "Polyfills for self hosted actions",
"main": "dist/index.mjs",
"scripts": {
Expand Down

0 comments on commit b394bdf

Please sign in to comment.