2
0
mirror of https://github.com/tenrok/BBob.git synced 2026-05-15 11:59:37 +03:00

chore(release): publish v4.0.0 (#200)

chore(release): release

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
github-actions[bot]
2024-06-25 21:39:44 +02:00
committed by GitHub
parent 74ae5fb6a5
commit dae171feeb
32 changed files with 720 additions and 107 deletions
-5
View File
@@ -1,5 +0,0 @@
---
"@bbob/parser": minor
---
fix: treat contextFreeTags case insensitively
-27
View File
@@ -1,27 +0,0 @@
---
"@bbob/plugin-helper": minor
"@bbob/preset-html5": minor
"@bbob/preset-react": minor
"@bbob/preset-vue": minor
"@bbob/parser": minor
"@bbob/preset": minor
"@bbob/react": minor
"@bbob/core": minor
"@bbob/html": minor
"@bbob/vue2": minor
"@bbob/vue3": minor
"@bbob/cli": minor
---
** BREAKING CHANGE **
`TagNode.create` method now by default pass `null` to content instead of empty array `[]`
```js
// 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', {}, [])
-18
View File
@@ -1,18 +0,0 @@
---
"@bbob/plugin-helper": major
"@bbob/preset-html5": major
"@bbob/preset-react": major
"@bbob/preset-vue": major
"@bbob/parser": major
"@bbob/preset": major
"@bbob/react": major
"@bbob/core": major
"@bbob/html": major
"@bbob/vue2": major
"@bbob/vue3": major
"@bbob/cli": major
---
Now BBob supports Typescript with typings
-7
View File
@@ -1,7 +0,0 @@
---
"@bbob/react": patch
---
fix(react): render words and spaces as single node in react
Now React properly renders string nodes with spaces as single text node for react. Thanks @WLYau
-17
View File
@@ -1,17 +0,0 @@
---
"@bbob/plugin-helper": minor
"@bbob/preset-html5": minor
"@bbob/preset-react": minor
"@bbob/preset-vue": minor
"vue2-example": minor
"@bbob/parser": minor
"@bbob/preset": minor
"@bbob/react": minor
"@bbob/core": minor
"@bbob/html": minor
"@bbob/vue2": minor
"@bbob/vue3": minor
"@bbob/cli": minor
---
All build processes and CI actions now using PNPM as default Package Manager