From eb08aa84c1f8a63b3e0dc30f32a5a62dc63d2113 Mon Sep 17 00:00:00 2001 From: Tim van der Lippe Date: Wed, 3 Jun 2026 10:41:20 +0200 Subject: [PATCH 1/2] Publiceer definitieve versie 2.2.0 Deze is goedgekeurd door de Programmeringstafel Gegevensuitwisseling op 2026-06-02. --- js/config.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/config.mjs b/js/config.mjs index 47245f13..c3089ef8 100644 --- a/js/config.mjs +++ b/js/config.mjs @@ -104,7 +104,7 @@ loadRespecWithConfiguration({ previousPublishDate: "2025-08-27", previousPublishVersion: "2.1.0", shortName: "adr", - specStatus: "VV", + specStatus: "DEF", specType: "ST", pluralize: true, From 919d873333fe4c909c9aaf3752ade5f788c5af8c Mon Sep 17 00:00:00 2001 From: Tim van der Lippe Date: Tue, 12 May 2026 16:16:46 +0200 Subject: [PATCH 2/2] Beheer: fix build met laatste versie van Respec (#332) Vereist met Respec 37 --- js/config.mjs | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/js/config.mjs b/js/config.mjs index c3089ef8..e63a7f25 100644 --- a/js/config.mjs +++ b/js/config.mjs @@ -4,9 +4,8 @@ import { generateMermaidFigures } from "https://logius-standaarden.github.io/pub async function initializeHighlightJSYaml() { //this is the function you call in 'preProcess', to load the highlighter - const worker = await new Promise(resolve => { - require(["core/worker"], ({ worker }) => resolve(worker)); - }); + const worker = await document.respec.worker; + const action = "highlight-load-lang-self-registration"; const langURL = "https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/languages/yaml.min.js"; const lang = "yaml"; @@ -31,9 +30,7 @@ async function fetchLinterConfiguration() { async function highlightLinterCode(config, document) { //this is the function you call in 'postProcess', to load the highlighter - const worker = await new Promise(resolve => { - require(["core/worker"], ({ worker }) => resolve(worker)); - }); + const worker = await document.respec.worker; const action = "highlight"; const code = linterConfiguration;