Prefer ts-node dependency over npx

pull/310/head
Frostebite 2021-12-29 14:58:10 +00:00
parent 08713c5c1c
commit 7880759f23
3 changed files with 3 additions and 3 deletions

2
dist/index.js vendored
View File

@ -414,7 +414,7 @@ class CLI {
core.info(`INPUT:`);
for (const element of properties) {
// TODO pull description from action.yml
program.option(`--${element} <${element}>`, 'default description');
program.option(`--${element} <${element}>`, ' ');
if (__1.Input[element] !== undefined && __1.Input[element] !== '') {
core.info(`${element} ${__1.Input[element]}`);
}

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

View File

@ -35,7 +35,7 @@ export class CLI {
core.info(`INPUT:`);
for (const element of properties) {
// TODO pull description from action.yml
program.option(`--${element} <${element}>`, 'default description');
program.option(`--${element} <${element}>`, ' ');
if (Input[element] !== undefined && Input[element] !== '') {
core.info(`${element} ${Input[element]}`);
}