🐛 Bug Fixes
📦 Code Refactoring
- replace yamlify-object with yaml (e7cfbd5)
♻️ Chores
- update pnpm to v9.14 (c36d1ea)
Breaking changes
-
- the render method in the Xception instance has been removed
- use renderError instead
EXAMPLE MIGRATION
before:
const error = new Xception(...)
const rendered = error.render();
after:
import { renderError } from 'xception/render';
const error = new Xception(...)
const rendered = renderError(error.render);
NOTE:
separating the render function from the default
export enables the use of other features
in non-Node environments