Prefer ts-node dependency over npx
parent
08713c5c1c
commit
7880759f23
|
|
@ -414,7 +414,7 @@ class CLI {
|
||||||
core.info(`INPUT:`);
|
core.info(`INPUT:`);
|
||||||
for (const element of properties) {
|
for (const element of properties) {
|
||||||
// TODO pull description from action.yml
|
// TODO pull description from action.yml
|
||||||
program.option(`--${element} <${element}>`, 'default description');
|
program.option(`--${element} <${element}>`, ' ');
|
||||||
if (__1.Input[element] !== undefined && __1.Input[element] !== '') {
|
if (__1.Input[element] !== undefined && __1.Input[element] !== '') {
|
||||||
core.info(`${element} ${__1.Input[element]}`);
|
core.info(`${element} ${__1.Input[element]}`);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -35,7 +35,7 @@ export class CLI {
|
||||||
core.info(`INPUT:`);
|
core.info(`INPUT:`);
|
||||||
for (const element of properties) {
|
for (const element of properties) {
|
||||||
// TODO pull description from action.yml
|
// TODO pull description from action.yml
|
||||||
program.option(`--${element} <${element}>`, 'default description');
|
program.option(`--${element} <${element}>`, ' ');
|
||||||
if (Input[element] !== undefined && Input[element] !== '') {
|
if (Input[element] !== undefined && Input[element] !== '') {
|
||||||
core.info(`${element} ${Input[element]}`);
|
core.info(`${element} ${Input[element]}`);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue