diff options
author | Vendicated <vendicated@riseup.net> | 2022-09-16 22:12:34 +0200 |
---|---|---|
committer | Vendicated <vendicated@riseup.net> | 2022-09-16 22:12:34 +0200 |
commit | 8cc43cdc7cdf97726a5067c1c2dd78d28e78ae59 (patch) | |
tree | e7a4bd71eabac8003acb04e8c204cacdb6646926 /src | |
parent | b6d2f50dfc1176dc92383f65bce5c9ff857ad2f7 (diff) | |
download | Vencord-8cc43cdc7cdf97726a5067c1c2dd78d28e78ae59.tar.gz Vencord-8cc43cdc7cdf97726a5067c1c2dd78d28e78ae59.tar.bz2 Vencord-8cc43cdc7cdf97726a5067c1c2dd78d28e78ae59.zip |
Add Megu to Experiments author
Diffstat (limited to 'src')
-rw-r--r-- | src/plugins/experiments.ts | 2 | ||||
-rw-r--r-- | src/webpack/webpack.ts | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/experiments.ts b/src/plugins/experiments.ts index c3b814e..dfd53c4 100644 --- a/src/plugins/experiments.ts +++ b/src/plugins/experiments.ts @@ -2,7 +2,7 @@ import definePlugin from '../utils/types'; export default definePlugin({ name: "Experiments", - author: "Vendicated", + author: "Vendicated, Megumin", description: "Enable Experiments", patches: [{ find: "Object.defineProperties(this,{isDeveloper", diff --git a/src/webpack/webpack.ts b/src/webpack/webpack.ts index 7e1c3e6..73ea1a3 100644 --- a/src/webpack/webpack.ts +++ b/src/webpack/webpack.ts @@ -109,7 +109,7 @@ export function search(...filters: Array<string | RegExp>) { } /** - * Extract a specific module by id into its own webpack chunk. This has no effect on + * Extract a specific module by id into its own Source File. This has no effect on * the code, it is only useful to be able to look at a specific module without having * to view a massive file. extract then returns the extracted module so you can jump to it. * As mentioned above, note that this extracted module is not actually used, |