Skip to content

Commit 12a9a8c

Browse files
committedFeb 10, 2024·
Fix CLI
1 parent d75629a commit 12a9a8c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed
 

‎src/index.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ if (!appDirExists) {
2020
fs.mkdirSync(APPLICATION_DIRECTORY, { recursive: true });
2121
}
2222

23-
yargs(hideBin(process.argv))
23+
const res = yargs(hideBin(process.argv))
2424
.option('config', {
2525
type: 'string',
2626
description: 'Path to the configuration file',
@@ -43,3 +43,5 @@ yargs(hideBin(process.argv))
4343

4444
process.exit(1);
4545
});
46+
47+
res.argv;

0 commit comments

Comments
 (0)
Please sign in to comment.