Skip to content
This repository was archived by the owner on Apr 13, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions nodecg-io-ahk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@
},
"license": "MIT",
"devDependencies": {
"@types/node": "^14.6.4",
"@types/node": "^14.14.13",
"@types/node-fetch": "^2.5.7",
"nodecg": "^1.6.1",
"typescript": "^4.0.2"
"nodecg": "^1.7.4",
"typescript": "^4.1.3"
},
"dependencies": {
"nodecg-io-core": "^0.1.0",
Expand Down
6 changes: 3 additions & 3 deletions nodecg-io-core/dashboard/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 8 additions & 8 deletions nodecg-io-core/dashboard/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,17 @@
"watch": "webpack --watch"
},
"devDependencies": {
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"ts-loader": "^8.0.3",
"clean-webpack-plugin": "^3.0.0"
"clean-webpack-plugin": "^3.0.0",
"ts-loader": "^8.0.12",
"webpack": "^5.10.1",
"webpack-cli": "^4.2.0"
},
"dependencies": {
"monaco-editor": "^0.20.0",
"nodecg": "^1.6.1",
"crypto-js": "^4.0.0",
"monaco-editor": "^0.21.2",
"nodecg": "^1.7.4",
"nodecg-io-core": "^0.1.0",
"typescript": "^4.0.2",
"crypto-js": "^4.0.0"
"typescript": "^4.1.3"
},
"license": "MIT"
}
4 changes: 2 additions & 2 deletions nodecg-io-core/extension/serviceBundle.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export abstract class ServiceBundle<R, C extends ServiceClient<unknown>> impleme
* @param config the config which should be validated.
* @return void if the config passes validation and an error string describing the issue if not.
*/
abstract async validateConfig(config: R): Promise<Result<void>>;
abstract validateConfig(config: R): Promise<Result<void>>;

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

/**
* Stops a client of this service that is not needed anymore.
Expand Down
12 changes: 6 additions & 6 deletions nodecg-io-core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,14 @@
},
"license": "MIT",
"devDependencies": {
"@types/crypto-js": "^3.1.47",
"@types/node": "^14.6.4",
"nodecg": "^1.6.1"
"@types/crypto-js": "^4.0.1",
"@types/node": "^14.14.13",
"nodecg": "^1.7.4"
},
"dependencies": {
"ajv": "^6.12.4",
"ajv": "^6.12.6",
"crypto-js": "^4.0.0",
"tslib": "^2.0.1",
"typescript": "^4.0.2"
"tslib": "^2.0.3",
"typescript": "^4.1.3"
}
}
10 changes: 5 additions & 5 deletions nodecg-io-discord/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@
},
"license": "MIT",
"devDependencies": {
"@types/node": "^14.6.4",
"nodecg": "^1.6.1",
"typescript": "^4.0.2"
"@types/node": "^14.14.13",
"nodecg": "^1.7.4",
"typescript": "^4.1.3"
},
"dependencies": {
"nodecg-io-core": "^0.1.0",
"discord.js": "^12.3.1"
"discord.js": "^12.5.1",
"nodecg-io-core": "^0.1.0"
}
}
8 changes: 4 additions & 4 deletions nodecg-io-intellij/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@
},
"license": "MIT",
"devDependencies": {
"@types/node": "^14.6.4",
"nodecg": "^1.6.1",
"typescript": "^4.0.2",
"@types/node-fetch": "^2.5.7"
"@types/node": "^14.14.13",
"@types/node-fetch": "^2.5.7",
"nodecg": "^1.7.4",
"typescript": "^4.1.3"
},
"dependencies": {
"nodecg-io-core": "^0.1.0",
Expand Down
2 changes: 1 addition & 1 deletion nodecg-io-irc/extension/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class IRCService extends ServiceBundle<IRCServiceConfig, IRCServiceClient> {
IRC.connect(config.reconnectTries || 5, res);
});
await new Promise((res) => {
IRC.disconnect("", res);
IRC.disconnect("", () => res(undefined));
});
return emptySuccess();
}
Expand Down
12 changes: 6 additions & 6 deletions nodecg-io-irc/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@
},
"license": "MIT",
"devDependencies": {
"@types/node": "^14.6.4",
"@types/irc": "0.3.33",
"nodecg": "^1.6.1",
"typescript": "^4.0.2"
"@types/irc": "^0.3.33",
"@types/node": "^14.14.13",
"nodecg": "^1.7.4",
"typescript": "^4.1.3"
},
"dependencies": {
"nodecg-io-core": "^0.1.0",
"irc": "0.5.2"
"irc": "^0.5.2",
"nodecg-io-core": "^0.1.0"
}
}
6 changes: 3 additions & 3 deletions nodecg-io-midi-input/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@
},
"license": "MIT",
"devDependencies": {
"@types/node": "^14.6.4",
"nodecg": "^1.6.1",
"typescript": "^4.0.2"
"@types/node": "^14.14.13",
"nodecg": "^1.7.4",
"typescript": "^4.1.3"
},
"dependencies": {
"nodecg-io-core": "^0.1.0",
Expand Down
6 changes: 3 additions & 3 deletions nodecg-io-midi-output/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@
},
"license": "MIT",
"devDependencies": {
"@types/node": "^14.6.4",
"nodecg": "^1.6.1",
"typescript": "^4.0.2"
"@types/node": "^14.14.13",
"nodecg": "^1.7.4",
"typescript": "^4.1.3"
},
"dependencies": {
"nodecg-io-core": "^0.1.0",
Expand Down
8 changes: 4 additions & 4 deletions nodecg-io-obs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@
},
"license": "MIT",
"devDependencies": {
"@types/node": "^14.6.4",
"nodecg": "^1.6.1",
"typescript": "^4.0.2"
"@types/node": "^14.14.13",
"nodecg": "^1.7.4",
"typescript": "^4.1.3"
},
"dependencies": {
"nodecg-io-core": "^0.1.0",
"obs-websocket-js": "^4.0.1"
"obs-websocket-js": "^4.0.2"
}
}
6 changes: 3 additions & 3 deletions nodecg-io-philipshue/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@
},
"license": "MIT",
"devDependencies": {
"@types/node": "^14.6.4",
"nodecg": "^1.6.1",
"typescript": "^4.0.2"
"@types/node": "^14.14.13",
"nodecg": "^1.7.4",
"typescript": "^4.1.3"
},
"dependencies": {
"is-ip": "^3.1.0",
Expand Down
8 changes: 4 additions & 4 deletions nodecg-io-rcon/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@
},
"license": "MIT",
"devDependencies": {
"@types/node": "^14.6.4",
"nodecg": "^1.6.1",
"typescript": "^4.0.2"
"@types/node": "^14.14.13",
"nodecg": "^1.7.4",
"typescript": "^4.1.3"
},
"dependencies": {
"nodecg-io-core": "^0.1.0",
"rcon-client": "^4.2.0"
"rcon-client": "^4.2.3"
}
}
6 changes: 3 additions & 3 deletions nodecg-io-reddit/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@
},
"license": "MIT",
"devDependencies": {
"@types/node": "^14.6.4",
"nodecg": "^1.6.1",
"typescript": "^4.0.2"
"@types/node": "^14.14.13",
"nodecg": "^1.7.4",
"typescript": "^4.1.3"
},
"dependencies": {
"nodecg-io-core": "^0.1.0",
Expand Down
6 changes: 3 additions & 3 deletions nodecg-io-sacn-receiver/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@
},
"license": "MIT",
"devDependencies": {
"@types/node": "^14.6.4",
"nodecg": "^1.6.1",
"typescript": "^4.0.2"
"@types/node": "^14.14.13",
"nodecg": "^1.7.4",
"typescript": "^4.1.3"
},
"dependencies": {
"nodecg-io-core": "^0.1.0",
Expand Down
6 changes: 3 additions & 3 deletions nodecg-io-sacn-sender/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@
},
"license": "MIT",
"devDependencies": {
"@types/node": "^14.6.4",
"nodecg": "^1.6.1",
"typescript": "^4.0.2"
"@types/node": "^14.14.13",
"nodecg": "^1.7.4",
"typescript": "^4.1.3"
},
"dependencies": {
"nodecg-io-core": "^0.1.0",
Expand Down
10 changes: 5 additions & 5 deletions nodecg-io-serial/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,14 @@
},
"license": "MIT",
"devDependencies": {
"@types/node": "^14.6.4",
"@types/node": "^14.14.13",
"@types/serialport": "^8.0.1",
"nodecg": "^1.6.1",
"typescript": "^4.0.2"
"nodecg": "^1.7.4",
"typescript": "^4.1.3"
},
"dependencies": {
"@serialport/parser-readline": "^9.0.1",
"nodecg-io-core": "^0.1.0",
"serialport": "^9.0.1",
"@serialport/parser-readline": "^9.0.1"
"serialport": "^9.0.3"
}
}
10 changes: 5 additions & 5 deletions nodecg-io-slack/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@
},
"license": "MIT",
"devDependencies": {
"@types/node": "^14.6.4",
"nodecg": "^1.6.1",
"typescript": "^4.0.2"
"@types/node": "^14.14.13",
"nodecg": "^1.7.4",
"typescript": "^4.1.3"
},
"dependencies": {
"nodecg-io-core": "^0.1.0",
"@slack/web-api": "^5.11.0"
"@slack/web-api": "^5.14.0",
"nodecg-io-core": "^0.1.0"
}
}
2 changes: 1 addition & 1 deletion nodecg-io-spotify/extension/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ class SpotifyService extends ServiceBundle<SpotifyServiceConfig, SpotifyServiceC

this.startTokenRefreshing(spotifyApi);

resolve();
resolve(undefined);
},
(err) => this.nodecg.log.error("Spotify login error.", err),
);
Expand Down
14 changes: 7 additions & 7 deletions nodecg-io-spotify/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,15 @@
},
"license": "MIT",
"devDependencies": {
"@types/node": "^14.6.4",
"nodecg": "^1.6.1",
"typescript": "^4.0.2"
"@types/node": "^14.14.13",
"nodecg": "^1.7.4",
"typescript": "^4.1.3"
},
"dependencies": {
"@types/spotify-web-api-node": "^4.0.1",
"nodecg-io-core": "^0.1.0",
"@types/spotify-web-api-node": "^4.0.2",
"express": "^4.17.1",
"open": "^7.2.1",
"spotify-web-api-node": "^4.0.0"
"nodecg-io-core": "^0.1.0",
"open": "^7.3.0",
"spotify-web-api-node": "^5.0.0"
}
}
10 changes: 5 additions & 5 deletions nodecg-io-streamdeck/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@
},
"license": "MIT",
"devDependencies": {
"@types/node": "^14.6.4",
"nodecg": "^1.6.1",
"typescript": "^4.0.2"
"@types/node": "^14.14.13",
"nodecg": "^1.7.4",
"typescript": "^4.1.3"
},
"dependencies": {
"nodecg-io-core": "^0.1.0",
"elgato-stream-deck": "^3.3.2"
"elgato-stream-deck": "^3.3.5",
"nodecg-io-core": "^0.1.0"
}
}
10 changes: 5 additions & 5 deletions nodecg-io-streamelements/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,13 @@
},
"license": "MIT",
"devDependencies": {
"@types/node": "^14.6.4",
"nodecg": "^1.6.1",
"typescript": "^4.0.2"
"@types/node": "^14.14.13",
"nodecg": "^1.7.4",
"typescript": "^4.1.3"
},
"dependencies": {
"@types/socket.io-client": "^1.4.33",
"@types/socket.io-client": "^1.4.34",
"nodecg-io-core": "^0.1.0",
"socket.io-client": "^2.3.0"
"socket.io-client": "^3.0.4"
}
}
8 changes: 4 additions & 4 deletions nodecg-io-telegram/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@
},
"license": "MIT",
"devDependencies": {
"@types/node": "^14.6.4",
"@types/node-telegram-bot-api": "^0.50.2",
"nodecg": "^1.6.1",
"typescript": "^4.0.2"
"@types/node": "^14.14.13",
"@types/node-telegram-bot-api": "^0.50.4",
"nodecg": "^1.7.4",
"typescript": "^4.1.3"
},
"dependencies": {
"nodecg-io-core": "^0.1.0",
Expand Down
2 changes: 1 addition & 1 deletion nodecg-io-tiane/extension/tiane.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export async function connectTiane(address: string): Promise<Tiane> {
websocket.once("error", reject);
websocket.on("open", () => {
websocket.off("error", reject);
resolve();
resolve(undefined);
});
});

Expand Down
Loading