Skip to content
This repository was archived by the owner on Apr 13, 2025. It is now read-only.

Commit 3d90aa1

Browse files
authored
Merge pull request #147 from codeoverflow-org/feature/bump-deps
Bump dependencies
2 parents 13edf27 + 2de2d04 commit 3d90aa1

File tree

62 files changed

+2129
-2610
lines changed

Some content is hidden

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

62 files changed

+2129
-2610
lines changed

nodecg-io-ahk/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@
3030
},
3131
"license": "MIT",
3232
"devDependencies": {
33-
"@types/node": "^14.6.4",
33+
"@types/node": "^14.14.13",
3434
"@types/node-fetch": "^2.5.7",
35-
"nodecg": "^1.6.1",
36-
"typescript": "^4.0.2"
35+
"nodecg": "^1.7.4",
36+
"typescript": "^4.1.3"
3737
},
3838
"dependencies": {
3939
"nodecg-io-core": "^0.1.0",

nodecg-io-core/dashboard/package-lock.json

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

nodecg-io-core/dashboard/package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,17 @@
77
"watch": "webpack --watch"
88
},
99
"devDependencies": {
10-
"webpack": "^4.44.1",
11-
"webpack-cli": "^3.3.12",
12-
"ts-loader": "^8.0.3",
13-
"clean-webpack-plugin": "^3.0.0"
10+
"clean-webpack-plugin": "^3.0.0",
11+
"ts-loader": "^8.0.12",
12+
"webpack": "^5.10.1",
13+
"webpack-cli": "^4.2.0"
1414
},
1515
"dependencies": {
16-
"monaco-editor": "^0.20.0",
17-
"nodecg": "^1.6.1",
16+
"crypto-js": "^4.0.0",
17+
"monaco-editor": "^0.21.2",
18+
"nodecg": "^1.7.4",
1819
"nodecg-io-core": "^0.1.0",
19-
"typescript": "^4.0.2",
20-
"crypto-js": "^4.0.0"
20+
"typescript": "^4.1.3"
2121
},
2222
"license": "MIT"
2323
}

nodecg-io-core/extension/serviceBundle.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ export abstract class ServiceBundle<R, C extends ServiceClient<unknown>> impleme
5959
* @param config the config which should be validated.
6060
* @return void if the config passes validation and an error string describing the issue if not.
6161
*/
62-
abstract async validateConfig(config: R): Promise<Result<void>>;
62+
abstract validateConfig(config: R): Promise<Result<void>>;
6363

6464
/**
6565
* Creates a client to the service using the validated config.
@@ -68,7 +68,7 @@ export abstract class ServiceBundle<R, C extends ServiceClient<unknown>> impleme
6868
* @param config the user provided config for the service.
6969
* @return the client if everything went well and an error string describing the issue if a error occured.
7070
*/
71-
abstract async createClient(config: R): Promise<Result<C>>;
71+
abstract createClient(config: R): Promise<Result<C>>;
7272

7373
/**
7474
* Stops a client of this service that is not needed anymore.

nodecg-io-core/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -36,14 +36,14 @@
3636
},
3737
"license": "MIT",
3838
"devDependencies": {
39-
"@types/crypto-js": "^3.1.47",
40-
"@types/node": "^14.6.4",
41-
"nodecg": "^1.6.1"
39+
"@types/crypto-js": "^4.0.1",
40+
"@types/node": "^14.14.13",
41+
"nodecg": "^1.7.4"
4242
},
4343
"dependencies": {
44-
"ajv": "^6.12.4",
44+
"ajv": "^6.12.6",
4545
"crypto-js": "^4.0.0",
46-
"tslib": "^2.0.1",
47-
"typescript": "^4.0.2"
46+
"tslib": "^2.0.3",
47+
"typescript": "^4.1.3"
4848
}
4949
}

nodecg-io-discord/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@
3030
},
3131
"license": "MIT",
3232
"devDependencies": {
33-
"@types/node": "^14.6.4",
34-
"nodecg": "^1.6.1",
35-
"typescript": "^4.0.2"
33+
"@types/node": "^14.14.13",
34+
"nodecg": "^1.7.4",
35+
"typescript": "^4.1.3"
3636
},
3737
"dependencies": {
38-
"nodecg-io-core": "^0.1.0",
39-
"discord.js": "^12.3.1"
38+
"discord.js": "^12.5.1",
39+
"nodecg-io-core": "^0.1.0"
4040
}
4141
}

nodecg-io-intellij/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@
3030
},
3131
"license": "MIT",
3232
"devDependencies": {
33-
"@types/node": "^14.6.4",
34-
"nodecg": "^1.6.1",
35-
"typescript": "^4.0.2",
36-
"@types/node-fetch": "^2.5.7"
33+
"@types/node": "^14.14.13",
34+
"@types/node-fetch": "^2.5.7",
35+
"nodecg": "^1.7.4",
36+
"typescript": "^4.1.3"
3737
},
3838
"dependencies": {
3939
"nodecg-io-core": "^0.1.0",

nodecg-io-irc/extension/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ class IRCService extends ServiceBundle<IRCServiceConfig, IRCServiceClient> {
3131
IRC.connect(config.reconnectTries || 5, res);
3232
});
3333
await new Promise((res) => {
34-
IRC.disconnect("", res);
34+
IRC.disconnect("", () => res(undefined));
3535
});
3636
return emptySuccess();
3737
}

nodecg-io-irc/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,13 @@
3030
},
3131
"license": "MIT",
3232
"devDependencies": {
33-
"@types/node": "^14.6.4",
34-
"@types/irc": "0.3.33",
35-
"nodecg": "^1.6.1",
36-
"typescript": "^4.0.2"
33+
"@types/irc": "^0.3.33",
34+
"@types/node": "^14.14.13",
35+
"nodecg": "^1.7.4",
36+
"typescript": "^4.1.3"
3737
},
3838
"dependencies": {
39-
"nodecg-io-core": "^0.1.0",
40-
"irc": "0.5.2"
39+
"irc": "^0.5.2",
40+
"nodecg-io-core": "^0.1.0"
4141
}
4242
}

nodecg-io-midi-input/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@
3030
},
3131
"license": "MIT",
3232
"devDependencies": {
33-
"@types/node": "^14.6.4",
34-
"nodecg": "^1.6.1",
35-
"typescript": "^4.0.2"
33+
"@types/node": "^14.14.13",
34+
"nodecg": "^1.7.4",
35+
"typescript": "^4.1.3"
3636
},
3737
"dependencies": {
3838
"nodecg-io-core": "^0.1.0",

0 commit comments

Comments
 (0)