v33.0.0
BREAKING CHANGES
respec
now requires Node.js v18.14+respec
Node.js API now uses ES modules instead of Common JS
Instead of importing ReSpec's toHTML
API as:
const { toHTML } = require('respec');
You'll need to import it like following:
import { toHTML } from 'respec';
// or, with dynamic import if you can't migrate to ES module just yet
const { toHTML } = await import('respec');
Full Changelog: w3c/respec@v32.8.1...v33.0.0