Skip to content

Add support for rendering expanded output

Compare
Choose a tag to compare
@github-actions github-actions released this 10 Nov 14:29
· 7 commits to 1.x since this release

This release adds support for rendering expanded output using the expand property.

import { dump } from '@poppinss/dumper/html'

dump(value, {
  expand: true, // expand first-level
})

dump(value, {
  expand: 'all', // expand recursively
})

Features

  • add support for pre-expanding dumper output (7a74793)

Full Changelog: v0.5.0...v0.6.0