-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
295 additions
and
587 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
/dist/ | ||
/src/*-peg.mjs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"semi": true, | ||
"singleQuote": true, | ||
"trailingComma": "es5", | ||
"bracketSpacing": true, | ||
"arrowParens": "always", | ||
"experimentalTernaries": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,37 @@ | ||
name: "Get Prereqs from Dist" | ||
description: "Extracts the prereqs from a local dist" | ||
name: 'Get Prereqs from Dist' | ||
description: 'Extracts the prereqs from a local dist' | ||
branding: | ||
icon: "arrow-right" | ||
color: "blue" | ||
icon: 'arrow-right' | ||
color: 'blue' | ||
|
||
inputs: | ||
phases: | ||
description: "The phases to get prerequisites for" | ||
description: 'The phases to get prerequisites for' | ||
required: false | ||
default: "build test runtime" | ||
default: 'build test runtime' | ||
relationships: | ||
description: "The relationships to get prerequisites for" | ||
description: 'The relationships to get prerequisites for' | ||
required: false | ||
default: "requires" | ||
default: 'requires' | ||
features: | ||
description: "The optional features to get prerequisites for" | ||
description: 'The optional features to get prerequisites for' | ||
required: false | ||
default: "" | ||
default: '' | ||
sources: | ||
description: "Source files to check for prerequisites" | ||
description: 'Source files to check for prerequisites' | ||
required: false | ||
default: "MYMETA.json MYMETA.yml META.json META.yml Makefile cpanfile" | ||
default: 'MYMETA.json MYMETA.yml META.json META.yml Makefile cpanfile' | ||
|
||
outputs: | ||
perl: | ||
description: "The prerequisites formatted with a version in the syntax expected by cpanm or cpm" | ||
description: 'The prerequisites formatted with a version in the syntax expected by cpanm or cpm' | ||
prereqs: | ||
description: "The prerequisites formatted with a version in the syntax expected by cpanm or cpm" | ||
description: 'The prerequisites formatted with a version in the syntax expected by cpanm or cpm' | ||
prereqs-no-version: | ||
description: "The prerequisites formatted without a version as expected by CPAN.pm" | ||
description: 'The prerequisites formatted without a version as expected by CPAN.pm' | ||
prereqsJSON: | ||
description: "The prerequisites as a JSON string with modules as the keys and versions as the values" | ||
description: 'The prerequisites as a JSON string with modules as the keys and versions as the values' | ||
|
||
runs: | ||
using: "node20" | ||
main: "dist/main.js" | ||
using: 'node20' | ||
main: 'dist/main.js' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.