Skip to content

Commit 24ee4d3

Browse files
committed
Merge branch '2.0.0'
2 parents 5ae333b + 3717af5 commit 24ee4d3

File tree

104 files changed

+21491
-3559
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

104 files changed

+21491
-3559
lines changed

.gitignore

+10-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
/localdb
22
dist/
3+
.clinic/
34

45
# Logs
56
logs
@@ -102,5 +103,12 @@ typings/
102103

103104
# TernJS port file
104105
.tern-port
105-
106-
log.txt
106+
scratch.ts
107+
log.txt
108+
log.txt
109+
.vscode/settings.json
110+
version
111+
log.txt
112+
.DS_Store
113+
package-lock.json
114+
waveform.bin

.vscode/launch.json

+19-1
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,12 @@
44
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
55
"version": "0.2.0",
66
"configurations": [
7+
78
{
89
"type": "node",
910
"request": "launch",
1011
"name": "Launch JS",
11-
"program": "${workspaceFolder}/dist/cli.js",
12+
"program": "${workspaceFolder}/dist/cli/index.js",
1213
"internalConsoleOptions": "openOnSessionStart",
1314
"sourceMaps": true,
1415
"smartStep": true,
@@ -35,6 +36,23 @@
3536
"${workspaceFolder}/lib/**/*.js",
3637
"<node_internals>/**/*.js"
3738
]
39+
},
40+
{
41+
"type": "node",
42+
"request": "launch",
43+
"name": "Launch NPTS",
44+
"program": "${workspaceFolder}/cli/nowPlaying.ts",
45+
"preLaunchTask": "tsc: build - tsconfig.json",
46+
"internalConsoleOptions": "openOnSessionStart",
47+
"outFiles": ["${workspaceFolder}/dist/**/*.js"],
48+
"sourceMaps": true,
49+
"smartStep": true,
50+
"outputCapture": "std",
51+
"skipFiles": [
52+
"${workspaceFolder}/node_modules/**/*.js",
53+
"${workspaceFolder}/lib/**/*.js",
54+
"<node_internals>/**/*.js"
55+
]
3856
}
3957
]
4058
}

Databases/Databases.ts

-90
This file was deleted.

Databases/DbConnection.ts

-51
This file was deleted.

Databases/index.ts

-2
This file was deleted.

0 commit comments

Comments
 (0)