Merge pull request #763 from kidonng/patch-2

Add trailing semicolon when appending to preload script
This commit is contained in:
Tom 2022-11-25 14:28:46 +11:00 committed by GitHub
commit 974f7ec63b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -75,7 +75,7 @@ export default async function (
}
await fsp.appendFile(
file,
`\n\n//notion-enhancer\nrequire('notion-enhancer')('${target}', exports, (js) => eval(js))`
`\n\n//notion-enhancer\nrequire('notion-enhancer')('${target}', exports, (js) => eval(js));`
);
}
}