Add 2022-03-06 to projects array.

This commit is contained in:
Bauke 2022-03-07 17:37:45 +01:00
parent fc8f9ad724
commit db6751c10a
Signed by: Bauke
GPG Key ID: C1C0F29952BCF558
1 changed files with 3 additions and 1 deletions

View File

@ -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<void> {
const projects: Project[] = [];
const projects: Project[] = [d2022_03_06];
for (const {name, operations, resolution} of projects) {
const dataStart = performance.now();