Skip to content

Commit 5399219

Browse files
authored
Merge pull request #2 from DefinitelyTyped/prompts
Add interactive prompts
2 parents d0650d3 + ae52964 commit 5399219

File tree

10 files changed

+1122
-73
lines changed

10 files changed

+1122
-73
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
.vscode
22
dist
3-
node_modules
3+
node_modules
4+
*.tsbuildinfo
5+
*.log

assets/index.html

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>focus-dt</title>
5+
</head>
6+
<body>
7+
<h1>focus-dt</h1>
8+
<p>Please wait while focus-dt connects...</p>
9+
</body>
10+
</html>

package-lock.json

Lines changed: 208 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"name": "focus-dt",
3-
"version": "1.0.1",
3+
"version": "1.0.2",
44
"description": "A simple command-line tool for running down PRs on DefinitelyTyped",
55
"bin": {
66
"focus-dt": "bin/focus-dt"
77
},
88
"scripts": {
99
"build": "tsc -p .",
10-
"start": "npm run build & node dist"
10+
"start": "npm run build && node dist"
1111
},
1212
"author": "Ron Buckton <[email protected]>",
1313
"license": "Apache-2.0",
@@ -23,9 +23,11 @@
2323
"@types/prompts": "^2.0.0",
2424
"@types/winreg": "^1.2.30",
2525
"@types/yargs": "^13.0.0",
26-
"typescript": "^3.5.1"
26+
"chalk": "^3.0.0",
27+
"typescript": "^3.8.3"
2728
},
2829
"dependencies": {
30+
"@esfx/async-canceltoken": "^1.0.0-pre.13",
2931
"@octokit/rest": "^16.28.1",
3032
"equatable": "^1.2.0",
3133
"iterable-query": "^1.0.0-pre.15",

0 commit comments

Comments
 (0)