From db6751c10ab3efaa88efb17f9faa42d2c9ca667e Mon Sep 17 00:00:00 2001 From: Bauke Date: Mon, 7 Mar 2022 17:37:45 +0100 Subject: [PATCH] Add 2022-03-06 to projects array. --- source/driftingnebula.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/source/driftingnebula.ts b/source/driftingnebula.ts index e2c0d1f..2ff8616 100644 --- a/source/driftingnebula.ts +++ b/source/driftingnebula.ts @@ -7,8 +7,10 @@ import {execa} from 'execa'; import {Crop} from './gegl/exports.js'; import Project from './project.js'; +import d2022_03_06 from './2022-03-06.js'; + async function main(): Promise { - const projects: Project[] = []; + const projects: Project[] = [d2022_03_06]; for (const {name, operations, resolution} of projects) { const dataStart = performance.now();