Skip to content

Commit 7ddedfc

Browse files
committed
small nits
1 parent 9c378eb commit 7ddedfc

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.vscode/settings.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@
7474
"johnpapa",
7575
"kibibit",
7676
"kohler",
77+
"luxon",
7778
"nestjs",
7879
"Onboarded",
7980
"packagr",

scripts/create-github.script.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import inquirer from 'inquirer';
66
import { chromium, Page } from '@playwright/test';
77

88
(async () => {
9-
const questions: any = [
9+
const githubAnswers = await inquirer.prompt([
1010
{
1111
type: 'input',
1212
name: 'username',
@@ -17,9 +17,7 @@ import { chromium, Page } from '@playwright/test';
1717
name: 'password',
1818
message: 'Enter your github password'
1919
}
20-
];
21-
22-
const githubAnswers = await inquirer.prompt(questions);
20+
]);
2321

2422
const baseUrl = 'http://localhost:10101';
2523
const homepageUrl = baseUrl;

0 commit comments

Comments
 (0)