diff options
author | Ven <vendicated@riseup.net> | 2023-01-25 03:42:01 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-25 03:42:01 +0100 |
commit | 5d3148cf50f315a303e8e7f8ac2f0861b0279eb1 (patch) | |
tree | c85bc4216c9442e9c13f59d076a29439bfbe276a /scripts | |
parent | d628924b59e577db5ad4e8f0f0bfc32eafd84c99 (diff) | |
download | Vencord-5d3148cf50f315a303e8e7f8ac2f0861b0279eb1.tar.gz Vencord-5d3148cf50f315a303e8e7f8ac2f0861b0279eb1.tar.bz2 Vencord-5d3148cf50f315a303e8e7f8ac2f0861b0279eb1.zip |
New plugin: VcNarrator (#402)
Co-authored-by: Nico <nico@d3sox.me>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/build/common.mjs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/build/common.mjs b/scripts/build/common.mjs index 9e0023c..c6a082d 100644 --- a/scripts/build/common.mjs +++ b/scripts/build/common.mjs @@ -73,7 +73,7 @@ export const globPlugins = { continue; } const mod = `p${i}`; - code += `import ${mod} from "./${dir}/${file.replace(/.tsx?$/, "")}";\n`; + code += `import ${mod} from "./${dir}/${file.replace(/\.tsx?$/, "")}";\n`; plugins += `[${mod}.name]:${mod},\n`; i++; } |