Add trailing semicolon when appending to preload script

This commit is contained in:
Kid 2022-06-05 15:41:11 +08:00 committed by GitHub
parent 5fd7daec9c
commit f20e79cf3b
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( await fsp.appendFile(
file, 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));`
); );
} }
} }