unnecessary files, fix default extension

master
Tomáš Mládek 2021-09-15 20:56:40 +02:00
parent b5a6b70c2b
commit 14efcf03a1
3 changed files with 1 additions and 9 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 950 KiB

View File

@ -37,6 +37,6 @@ const shuffledImages = shuffle(images);
const segments = mode.getSegments(context as CastCanvasRenderingContext, collageConfig, shuffledImages);
mode.place(context as CastCanvasRenderingContext, shuffledImages, segments);
const output = args["output"] || "collage.jpg";
const output = args["output"] || "collage.png";
console.log(`Saving to "${output}"...`);
await Deno.writeFile(output, canvas.toBuffer());

View File

@ -1,8 +0,0 @@
{
"compilerOptions": {
"lib": [
"dom",
"deno.ns"
]
}
}