Skip to content

Commit

Permalink
fix: Reconciliation server build on Node 22 (#1460)
Browse files Browse the repository at this point in the history
  • Loading branch information
ddeboer authored Nov 8, 2024
1 parent f2a27ae commit 324a82c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/network-of-terms-reconciliation/src/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,17 @@ import {findManifest} from './manifest.js';
import formBodyPlugin from '@fastify/formbody';
import {reconciliationQuery, ReconciliationQueryBatch} from './query.js';
import {preview} from './preview.js';
import en from './locales/en.json' assert {type: 'json'};
import nl from './locales/nl.json' assert {type: 'json'};
import en from './locales/en.json' with {type: 'json'};
import nl from './locales/nl.json' with {type: 'json'};
import {
Catalog,
getHttpLogger,
IRI,
LookupService,
QueryTermsService,
} from '@netwerk-digitaal-erfgoed/network-of-terms-query';
import jsonSchema from './json-schema/reconciliation-query.json' assert {type: 'json'};
import dataExtensionQuery from './json-schema/data-extension-query.json' assert {type: 'json'};
import jsonSchema from './json-schema/reconciliation-query.json' with {type: 'json'};
import dataExtensionQuery from './json-schema/data-extension-query.json' with {type: 'json'};
import {parse} from 'querystring';
import {
dataExtensionProperties,
Expand Down

0 comments on commit 324a82c

Please sign in to comment.