mirror of
https://github.com/tenrok/BBob.git
synced 2026-06-14 18:42:24 +03:00
270f5645f8
* fix: TagNode.create with null content by default * Create five-meals-sing.md * fix: tests * fix(preset): types inference * fix: preset types * fix: preset types * fix: lock file, parser and utils * refactor: move types to separate package * fix(preset): add @bbob/core to dev deps * fix(preset): lock file * test(preset-vue): create tags * test(preset-vue): tests * chore(nx): fix nx cover deps * chore: changesets
642 B
642 B
@bbob/plugin-helper, @bbob/preset-html5, @bbob/preset-react, @bbob/preset-vue, @bbob/parser, @bbob/preset, @bbob/react, @bbob/core, @bbob/html, @bbob/vue2, @bbob/vue3, @bbob/cli
| @bbob/plugin-helper | @bbob/preset-html5 | @bbob/preset-react | @bbob/preset-vue | @bbob/parser | @bbob/preset | @bbob/react | @bbob/core | @bbob/html | @bbob/vue2 | @bbob/vue3 | @bbob/cli |
|---|---|---|---|---|---|---|---|---|---|---|---|
| minor | minor | minor | minor | minor | minor | minor | minor | minor | minor | minor | minor |
** BREAKING CHANGE **
TagNode.create method now by default pass null to content instead of empty array []
// new behavior
TagNode.create('img').toString() // -> [img]
// old behavior
TagNode.create('img', {}, []).toString() // -> [img][/img]
Migrate all calls of TagNode.create('test-tag') to `TagNode.create('test-tag', {}, [])