chore: don't patch forge.config.js (may be useful for notion-repackaged?)

This commit is contained in:
dragonwocky 2023-08-04 13:11:32 +10:00
parent 9a1b35afd9
commit e762e68f7f
Signed by: dragonwocky
GPG Key ID: 7998D08F7D7BD7A8

View File

@ -9,6 +9,7 @@ const replaceIfNotFound = (string, search, replacement) =>
const patches = {
"*": async (scriptId, scriptContent) => {
if (scriptId === 'forge.config.js') return scriptContent;
const prevTriggerPattern = /require\(['|"]notion-enhancer['|"]\)/,
prevTriggerFound = prevTriggerPattern.test(scriptContent);
if (prevTriggerFound) return scriptContent;