Emit MessageSend for every file
This commit is contained in:
parent
64761fa9d7
commit
53a872a11b
1 changed files with 8 additions and 0 deletions
|
@ -25,6 +25,14 @@ export async function start() {
|
||||||
|
|
||||||
// Upload missing files to the game.
|
// Upload missing files to the game.
|
||||||
signal.emit(EventType.MessageSend, requestFilenames());
|
signal.emit(EventType.MessageSend, requestFilenames());
|
||||||
|
|
||||||
|
if (config.get("pushOnCon")) {
|
||||||
|
const extensions = config.get("allowedFiletypes");
|
||||||
|
for (const path of watch.paths.keys()) {
|
||||||
|
if (extensions.some(extension => path.endsWith(extension)))
|
||||||
|
signal.emit(EventType.MessageSend, fileChangeEventToMsg({ path: path }))
|
||||||
|
}
|
||||||
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
// Add a handler for changed files.
|
// Add a handler for changed files.
|
||||||
|
|
Loading…
Add table
Reference in a new issue