From 8adf7ca155a7f2b9d59ecfcc98ca47d123a26f59 Mon Sep 17 00:00:00 2001 From: Ven Date: Sun, 30 Oct 2022 20:45:18 +0100 Subject: Webpack Warnings & Errors (#178) * dev: Useful strict Warnings & Errors * Always log error * Ignore pending patches with all or whose predicate = false * Error -> Warn --- src/api/Commands/commandHelpers.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/api/Commands/commandHelpers.ts') diff --git a/src/api/Commands/commandHelpers.ts b/src/api/Commands/commandHelpers.ts index 90b89ed..8986248 100644 --- a/src/api/Commands/commandHelpers.ts +++ b/src/api/Commands/commandHelpers.ts @@ -24,7 +24,7 @@ import { filters, waitFor } from "../../webpack"; import { Argument } from "./types"; const createBotMessage = lazyWebpack(filters.byCode('username:"Clyde"')); -const MessageSender = lazyWebpack(filters.byProps(["receiveMessage"])); +const MessageSender = lazyWebpack(filters.byProps("receiveMessage")); let SnowflakeUtils: any; waitFor("fromTimestamp", m => SnowflakeUtils = m); -- cgit