Skip to content

v33.0.0

Compare
Choose a tag to compare
@sidvishnoi sidvishnoi released this 05 Apr 08:32
· 137 commits to main since this release
4127e9a

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