chore: save downloads to outputDir (#310)

This commit is contained in:
Simon Knott 2025-05-02 10:57:31 +02:00 committed by GitHub
parent 23ce973377
commit a15f0f301b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 54 additions and 3 deletions

View file

@ -31,7 +31,7 @@ const pdf = defineTool({
handle: async context => {
const tab = context.currentTabOrDie();
const fileName = await outputFile(context.config, `page-${new Date().toISOString()}'.pdf'`);
const fileName = await outputFile(context.config, `page-${new Date().toISOString()}.pdf`);
const code = [
`// Save page as ${fileName}`,