Skip to content

Commit b2503db

Browse files
author
Sergej Popov
committed
lyrics wikia moved to fandom
1 parent b6c4818 commit b2503db

File tree

9 files changed

+473
-350
lines changed

9 files changed

+473
-350
lines changed

.vscode/tasks.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
{
2-
// See https://go.microsoft.com/fwlink/?LinkId=733558
3-
// for the documentation about the tasks.json format
42
"version": "2.0.0",
53
"tasks": [
64
{

ci.ts

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,14 @@ export interface IConfig {
55
refreshToken: string;
66
clientSecret: string;
77
clientId: string;
8-
spotifyAppIs: string;
8+
spotifyAppId: string;
99
amazonMusicAppId: string;
10-
},
10+
};
1111
github: {
1212
token: string;
13-
}
13+
};
1414
}
1515

16-
1716
export const getConfig = async () => {
1817
const json = await fs.readFile("./secrets.json", "utf-8");
1918
return JSON.parse(json) as IConfig;
@@ -23,4 +22,4 @@ export const getVersion = async (): Promise<string> => {
2322
const json = await fs.readFile("src/spotify/manifest.json", "utf-8");
2423
const manifest = JSON.parse(json);
2524
return manifest.version;
26-
};
25+
};

0 commit comments

Comments
 (0)