mirror of
https://github.com/tenrok/BBob.git
synced 2026-05-15 11:59:37 +03:00
chore(release): publish v3.0.2 (#192)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
f398412df7
commit
d26f833f1b
@@ -1,23 +0,0 @@
|
|||||||
---
|
|
||||||
"@bbob/cli": patch
|
|
||||||
"@bbob/core": patch
|
|
||||||
"@bbob/html": patch
|
|
||||||
"@bbob/parser": patch
|
|
||||||
"@bbob/plugin-helper": patch
|
|
||||||
"@bbob/preset": patch
|
|
||||||
"@bbob/preset-html5": patch
|
|
||||||
"@bbob/preset-react": patch
|
|
||||||
"@bbob/preset-vue": patch
|
|
||||||
"@bbob/react": patch
|
|
||||||
"@bbob/vue2": patch
|
|
||||||
"@bbob/vue3": patch
|
|
||||||
---
|
|
||||||
|
|
||||||
Now HTML5 Preset supports `color` tag
|
|
||||||
|
|
||||||
```
|
|
||||||
[color="red"]Red Text[/color]
|
|
||||||
```
|
|
||||||
|
|
||||||
Also fixes bug with case insensitive tags in `onlyAllowTags`
|
|
||||||
Now you can pas `h1` and `H1` and they will be treated as same tags
|
|
||||||
Vendored
+7
@@ -4,6 +4,13 @@
|
|||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [[`0c78831`](https://github.com/JiLiZART/BBob/commit/0c78831372b02216c9be5d95cd8b857c18f81540)]:
|
||||||
|
- @bbob/parser@3.0.2
|
||||||
|
|
||||||
|
## null
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
- Updated dependencies [[`603c3ea`](https://github.com/JiLiZART/BBob/commit/603c3ead0f2b895a447dd9cfe98ce6ef27eec79c)]:
|
- Updated dependencies [[`603c3ea`](https://github.com/JiLiZART/BBob/commit/603c3ead0f2b895a447dd9cfe98ce6ef27eec79c)]:
|
||||||
- @bbob/parser@3.0.1
|
- @bbob/parser@3.0.1
|
||||||
|
|
||||||
|
|||||||
Vendored
+1
-1
@@ -13,7 +13,7 @@
|
|||||||
"url": "https://artkost.ru/"
|
"url": "https://artkost.ru/"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@bbob/parser": "3.0.1",
|
"@bbob/parser": "3.0.2",
|
||||||
"benchmark": "2.1.4",
|
"benchmark": "2.1.4",
|
||||||
"picocolors": "1.0.0",
|
"picocolors": "1.0.0",
|
||||||
"xbbcode-parser": "0.1.2",
|
"xbbcode-parser": "0.1.2",
|
||||||
|
|||||||
@@ -1,5 +1,22 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 3.0.2
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- [#191](https://github.com/JiLiZART/BBob/pull/191) [`0c78831`](https://github.com/JiLiZART/BBob/commit/0c78831372b02216c9be5d95cd8b857c18f81540) Thanks [@JiLiZART](https://github.com/JiLiZART)! - Now HTML5 Preset supports `color` tag
|
||||||
|
|
||||||
|
```
|
||||||
|
[color="red"]Red Text[/color]
|
||||||
|
```
|
||||||
|
|
||||||
|
Also fixes bug with case insensitive tags in `onlyAllowTags`
|
||||||
|
Now you can pas `h1` and `H1` and they will be treated as same tags
|
||||||
|
|
||||||
|
- Updated dependencies [[`0c78831`](https://github.com/JiLiZART/BBob/commit/0c78831372b02216c9be5d95cd8b857c18f81540)]:
|
||||||
|
- @bbob/html@3.0.2
|
||||||
|
- @bbob/preset-html5@3.0.2
|
||||||
|
|
||||||
## 3.0.0
|
## 3.0.0
|
||||||
|
|
||||||
### Major Changes
|
### Major Changes
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@bbob/cli",
|
"name": "@bbob/cli",
|
||||||
"version": "3.0.0",
|
"version": "3.0.2",
|
||||||
"description": "Comand line bbcode parser",
|
"description": "Comand line bbcode parser",
|
||||||
"main": "lib/cli.js",
|
"main": "lib/cli.js",
|
||||||
"bin": {
|
"bin": {
|
||||||
@@ -10,8 +10,8 @@
|
|||||||
"lib": "lib"
|
"lib": "lib"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@bbob/html": "^3.0.0",
|
"@bbob/html": "^3.0.2",
|
||||||
"@bbob/preset-html5": "^3.0.0",
|
"@bbob/preset-html5": "^3.0.2",
|
||||||
"commander": "^2.15.1"
|
"commander": "^2.15.1"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
|
|||||||
@@ -1,5 +1,21 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 3.0.2
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- [#191](https://github.com/JiLiZART/BBob/pull/191) [`0c78831`](https://github.com/JiLiZART/BBob/commit/0c78831372b02216c9be5d95cd8b857c18f81540) Thanks [@JiLiZART](https://github.com/JiLiZART)! - Now HTML5 Preset supports `color` tag
|
||||||
|
|
||||||
|
```
|
||||||
|
[color="red"]Red Text[/color]
|
||||||
|
```
|
||||||
|
|
||||||
|
Also fixes bug with case insensitive tags in `onlyAllowTags`
|
||||||
|
Now you can pas `h1` and `H1` and they will be treated as same tags
|
||||||
|
|
||||||
|
- Updated dependencies [[`0c78831`](https://github.com/JiLiZART/BBob/commit/0c78831372b02216c9be5d95cd8b857c18f81540)]:
|
||||||
|
- @bbob/parser@3.0.2
|
||||||
|
|
||||||
## 3.0.0
|
## 3.0.0
|
||||||
|
|
||||||
### Major Changes
|
### Major Changes
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@bbob/core",
|
"name": "@bbob/core",
|
||||||
"version": "3.0.0",
|
"version": "3.0.2",
|
||||||
"description": "⚡️Blazing-fast js-bbcode-parser, bbcode js, that transforms and parses to AST with plugin support in pure javascript, no dependencies",
|
"description": "⚡️Blazing-fast js-bbcode-parser, bbcode js, that transforms and parses to AST with plugin support in pure javascript, no dependencies",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"bbcode",
|
"bbcode",
|
||||||
@@ -20,7 +20,7 @@
|
|||||||
"core"
|
"core"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@bbob/parser": "^3.0.0"
|
"@bbob/parser": "^3.0.2"
|
||||||
},
|
},
|
||||||
"main": "lib/index.js",
|
"main": "lib/index.js",
|
||||||
"module": "es/index.js",
|
"module": "es/index.js",
|
||||||
|
|||||||
@@ -1,5 +1,22 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 3.0.2
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- [#191](https://github.com/JiLiZART/BBob/pull/191) [`0c78831`](https://github.com/JiLiZART/BBob/commit/0c78831372b02216c9be5d95cd8b857c18f81540) Thanks [@JiLiZART](https://github.com/JiLiZART)! - Now HTML5 Preset supports `color` tag
|
||||||
|
|
||||||
|
```
|
||||||
|
[color="red"]Red Text[/color]
|
||||||
|
```
|
||||||
|
|
||||||
|
Also fixes bug with case insensitive tags in `onlyAllowTags`
|
||||||
|
Now you can pas `h1` and `H1` and they will be treated as same tags
|
||||||
|
|
||||||
|
- Updated dependencies [[`0c78831`](https://github.com/JiLiZART/BBob/commit/0c78831372b02216c9be5d95cd8b857c18f81540)]:
|
||||||
|
- @bbob/core@3.0.2
|
||||||
|
- @bbob/plugin-helper@3.0.2
|
||||||
|
|
||||||
## 3.0.0
|
## 3.0.0
|
||||||
|
|
||||||
### Major Changes
|
### Major Changes
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@bbob/html",
|
"name": "@bbob/html",
|
||||||
"version": "3.0.0",
|
"version": "3.0.2",
|
||||||
"description": "A BBCode to HTML Renderer part of @bbob",
|
"description": "A BBCode to HTML Renderer part of @bbob",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"html",
|
"html",
|
||||||
@@ -9,8 +9,8 @@
|
|||||||
"bbob"
|
"bbob"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@bbob/core": "^3.0.0",
|
"@bbob/core": "^3.0.2",
|
||||||
"@bbob/plugin-helper": "^3.0.0"
|
"@bbob/plugin-helper": "^3.0.2"
|
||||||
},
|
},
|
||||||
"main": "lib/index.js",
|
"main": "lib/index.js",
|
||||||
"module": "es/index.js",
|
"module": "es/index.js",
|
||||||
|
|||||||
@@ -1,5 +1,21 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 3.0.2
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- [#191](https://github.com/JiLiZART/BBob/pull/191) [`0c78831`](https://github.com/JiLiZART/BBob/commit/0c78831372b02216c9be5d95cd8b857c18f81540) Thanks [@JiLiZART](https://github.com/JiLiZART)! - Now HTML5 Preset supports `color` tag
|
||||||
|
|
||||||
|
```
|
||||||
|
[color="red"]Red Text[/color]
|
||||||
|
```
|
||||||
|
|
||||||
|
Also fixes bug with case insensitive tags in `onlyAllowTags`
|
||||||
|
Now you can pas `h1` and `H1` and they will be treated as same tags
|
||||||
|
|
||||||
|
- Updated dependencies [[`0c78831`](https://github.com/JiLiZART/BBob/commit/0c78831372b02216c9be5d95cd8b857c18f81540)]:
|
||||||
|
- @bbob/plugin-helper@3.0.2
|
||||||
|
|
||||||
## 3.0.1
|
## 3.0.1
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@bbob/parser",
|
"name": "@bbob/parser",
|
||||||
"version": "3.0.1",
|
"version": "3.0.2",
|
||||||
"description": "A BBCode to AST Parser part of @bbob",
|
"description": "A BBCode to AST Parser part of @bbob",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"bbcode",
|
"bbcode",
|
||||||
@@ -13,7 +13,7 @@
|
|||||||
"parse"
|
"parse"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@bbob/plugin-helper": "^3.0.0"
|
"@bbob/plugin-helper": "^3.0.2"
|
||||||
},
|
},
|
||||||
"main": "lib/index.js",
|
"main": "lib/index.js",
|
||||||
"module": "es/index.js",
|
"module": "es/index.js",
|
||||||
|
|||||||
@@ -1,5 +1,18 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 3.0.2
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- [#191](https://github.com/JiLiZART/BBob/pull/191) [`0c78831`](https://github.com/JiLiZART/BBob/commit/0c78831372b02216c9be5d95cd8b857c18f81540) Thanks [@JiLiZART](https://github.com/JiLiZART)! - Now HTML5 Preset supports `color` tag
|
||||||
|
|
||||||
|
```
|
||||||
|
[color="red"]Red Text[/color]
|
||||||
|
```
|
||||||
|
|
||||||
|
Also fixes bug with case insensitive tags in `onlyAllowTags`
|
||||||
|
Now you can pas `h1` and `H1` and they will be treated as same tags
|
||||||
|
|
||||||
## 3.0.0
|
## 3.0.0
|
||||||
|
|
||||||
### Major Changes
|
### Major Changes
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@bbob/plugin-helper",
|
"name": "@bbob/plugin-helper",
|
||||||
"version": "3.0.0",
|
"version": "3.0.2",
|
||||||
"description": "Set of utils to help write plugins for @bbob/core",
|
"description": "Set of utils to help write plugins for @bbob/core",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"bbob",
|
"bbob",
|
||||||
|
|||||||
@@ -1,5 +1,22 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 3.0.2
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- [#191](https://github.com/JiLiZART/BBob/pull/191) [`0c78831`](https://github.com/JiLiZART/BBob/commit/0c78831372b02216c9be5d95cd8b857c18f81540) Thanks [@JiLiZART](https://github.com/JiLiZART)! - Now HTML5 Preset supports `color` tag
|
||||||
|
|
||||||
|
```
|
||||||
|
[color="red"]Red Text[/color]
|
||||||
|
```
|
||||||
|
|
||||||
|
Also fixes bug with case insensitive tags in `onlyAllowTags`
|
||||||
|
Now you can pas `h1` and `H1` and they will be treated as same tags
|
||||||
|
|
||||||
|
- Updated dependencies [[`0c78831`](https://github.com/JiLiZART/BBob/commit/0c78831372b02216c9be5d95cd8b857c18f81540)]:
|
||||||
|
- @bbob/plugin-helper@3.0.2
|
||||||
|
- @bbob/preset@3.0.2
|
||||||
|
|
||||||
## 3.0.0
|
## 3.0.0
|
||||||
|
|
||||||
### Major Changes
|
### Major Changes
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@bbob/preset-html5",
|
"name": "@bbob/preset-html5",
|
||||||
"version": "3.0.0",
|
"version": "3.0.2",
|
||||||
"description": "HTML5 preset to transform BBCode to HTML for @bbob/parser",
|
"description": "HTML5 preset to transform BBCode to HTML for @bbob/parser",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"preset",
|
"preset",
|
||||||
@@ -8,11 +8,11 @@
|
|||||||
"bbob"
|
"bbob"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@bbob/plugin-helper": "^3.0.0",
|
"@bbob/plugin-helper": "^3.0.2",
|
||||||
"@bbob/preset": "^3.0.0"
|
"@bbob/preset": "^3.0.2"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@bbob/html": "^3.0.0"
|
"@bbob/html": "^3.0.2"
|
||||||
},
|
},
|
||||||
"main": "lib/index.js",
|
"main": "lib/index.js",
|
||||||
"module": "es/index.js",
|
"module": "es/index.js",
|
||||||
|
|||||||
@@ -1,5 +1,21 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 3.0.2
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- [#191](https://github.com/JiLiZART/BBob/pull/191) [`0c78831`](https://github.com/JiLiZART/BBob/commit/0c78831372b02216c9be5d95cd8b857c18f81540) Thanks [@JiLiZART](https://github.com/JiLiZART)! - Now HTML5 Preset supports `color` tag
|
||||||
|
|
||||||
|
```
|
||||||
|
[color="red"]Red Text[/color]
|
||||||
|
```
|
||||||
|
|
||||||
|
Also fixes bug with case insensitive tags in `onlyAllowTags`
|
||||||
|
Now you can pas `h1` and `H1` and they will be treated as same tags
|
||||||
|
|
||||||
|
- Updated dependencies [[`0c78831`](https://github.com/JiLiZART/BBob/commit/0c78831372b02216c9be5d95cd8b857c18f81540)]:
|
||||||
|
- @bbob/preset-html5@3.0.2
|
||||||
|
|
||||||
## 3.0.0
|
## 3.0.0
|
||||||
|
|
||||||
### Major Changes
|
### Major Changes
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@bbob/preset-react",
|
"name": "@bbob/preset-react",
|
||||||
"version": "3.0.0",
|
"version": "3.0.2",
|
||||||
"description": "React preset to transform BBCode to React for @bbob/react",
|
"description": "React preset to transform BBCode to React for @bbob/react",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"bbob",
|
"bbob",
|
||||||
@@ -8,10 +8,10 @@
|
|||||||
"react"
|
"react"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@bbob/preset-html5": "^3.0.0"
|
"@bbob/preset-html5": "^3.0.2"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@bbob/core": "^3.0.0"
|
"@bbob/core": "^3.0.2"
|
||||||
},
|
},
|
||||||
"main": "lib/index.js",
|
"main": "lib/index.js",
|
||||||
"module": "es/index.js",
|
"module": "es/index.js",
|
||||||
|
|||||||
@@ -1,5 +1,21 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 3.0.2
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- [#191](https://github.com/JiLiZART/BBob/pull/191) [`0c78831`](https://github.com/JiLiZART/BBob/commit/0c78831372b02216c9be5d95cd8b857c18f81540) Thanks [@JiLiZART](https://github.com/JiLiZART)! - Now HTML5 Preset supports `color` tag
|
||||||
|
|
||||||
|
```
|
||||||
|
[color="red"]Red Text[/color]
|
||||||
|
```
|
||||||
|
|
||||||
|
Also fixes bug with case insensitive tags in `onlyAllowTags`
|
||||||
|
Now you can pas `h1` and `H1` and they will be treated as same tags
|
||||||
|
|
||||||
|
- Updated dependencies [[`0c78831`](https://github.com/JiLiZART/BBob/commit/0c78831372b02216c9be5d95cd8b857c18f81540)]:
|
||||||
|
- @bbob/preset-html5@3.0.2
|
||||||
|
|
||||||
## 3.0.0
|
## 3.0.0
|
||||||
|
|
||||||
### Major Changes
|
### Major Changes
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@bbob/preset-vue",
|
"name": "@bbob/preset-vue",
|
||||||
"version": "3.0.0",
|
"version": "3.0.2",
|
||||||
"description": "Vue preset to transform BBCode to Vue for @bbob/vue*",
|
"description": "Vue preset to transform BBCode to Vue for @bbob/vue*",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"bbob",
|
"bbob",
|
||||||
@@ -8,10 +8,10 @@
|
|||||||
"vue"
|
"vue"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@bbob/preset-html5": "^3.0.0"
|
"@bbob/preset-html5": "^3.0.2"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@bbob/core": "^3.0.0"
|
"@bbob/core": "^3.0.2"
|
||||||
},
|
},
|
||||||
"main": "lib/index.js",
|
"main": "lib/index.js",
|
||||||
"module": "es/index.js",
|
"module": "es/index.js",
|
||||||
|
|||||||
@@ -1,5 +1,18 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 3.0.2
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- [#191](https://github.com/JiLiZART/BBob/pull/191) [`0c78831`](https://github.com/JiLiZART/BBob/commit/0c78831372b02216c9be5d95cd8b857c18f81540) Thanks [@JiLiZART](https://github.com/JiLiZART)! - Now HTML5 Preset supports `color` tag
|
||||||
|
|
||||||
|
```
|
||||||
|
[color="red"]Red Text[/color]
|
||||||
|
```
|
||||||
|
|
||||||
|
Also fixes bug with case insensitive tags in `onlyAllowTags`
|
||||||
|
Now you can pas `h1` and `H1` and they will be treated as same tags
|
||||||
|
|
||||||
## 3.0.0
|
## 3.0.0
|
||||||
|
|
||||||
### Major Changes
|
### Major Changes
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@bbob/preset",
|
"name": "@bbob/preset",
|
||||||
"version": "3.0.0",
|
"version": "3.0.2",
|
||||||
"description": "Base preset for creating extensible presets for @bbob/core",
|
"description": "Base preset for creating extensible presets for @bbob/core",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"preset",
|
"preset",
|
||||||
|
|||||||
@@ -1,5 +1,23 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 3.0.2
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- [#191](https://github.com/JiLiZART/BBob/pull/191) [`0c78831`](https://github.com/JiLiZART/BBob/commit/0c78831372b02216c9be5d95cd8b857c18f81540) Thanks [@JiLiZART](https://github.com/JiLiZART)! - Now HTML5 Preset supports `color` tag
|
||||||
|
|
||||||
|
```
|
||||||
|
[color="red"]Red Text[/color]
|
||||||
|
```
|
||||||
|
|
||||||
|
Also fixes bug with case insensitive tags in `onlyAllowTags`
|
||||||
|
Now you can pas `h1` and `H1` and they will be treated as same tags
|
||||||
|
|
||||||
|
- Updated dependencies [[`0c78831`](https://github.com/JiLiZART/BBob/commit/0c78831372b02216c9be5d95cd8b857c18f81540)]:
|
||||||
|
- @bbob/core@3.0.2
|
||||||
|
- @bbob/html@3.0.2
|
||||||
|
- @bbob/plugin-helper@3.0.2
|
||||||
|
|
||||||
## 3.0.0
|
## 3.0.0
|
||||||
|
|
||||||
### Major Changes
|
### Major Changes
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@bbob/react",
|
"name": "@bbob/react",
|
||||||
"version": "3.0.0",
|
"version": "3.0.2",
|
||||||
"description": "A BBCode to React Renderer part of @bbob",
|
"description": "A BBCode to React Renderer part of @bbob",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"react",
|
"react",
|
||||||
@@ -9,16 +9,16 @@
|
|||||||
"bbob"
|
"bbob"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@bbob/core": "^3.0.0",
|
"@bbob/core": "^3.0.2",
|
||||||
"@bbob/html": "^3.0.0",
|
"@bbob/html": "^3.0.2",
|
||||||
"@bbob/plugin-helper": "^3.0.0"
|
"@bbob/plugin-helper": "^3.0.2"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"prop-types": "> 15.0",
|
"prop-types": "> 15.0",
|
||||||
"react": "> 15.0"
|
"react": "> 15.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@bbob/preset-react": "^3.0.0",
|
"@bbob/preset-react": "^3.0.2",
|
||||||
"@testing-library/jest-dom": "^5.16.4",
|
"@testing-library/jest-dom": "^5.16.4",
|
||||||
"@testing-library/react": "13.x",
|
"@testing-library/react": "13.x",
|
||||||
"react": "18.x",
|
"react": "18.x",
|
||||||
|
|||||||
@@ -1,5 +1,23 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 3.0.2
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- [#191](https://github.com/JiLiZART/BBob/pull/191) [`0c78831`](https://github.com/JiLiZART/BBob/commit/0c78831372b02216c9be5d95cd8b857c18f81540) Thanks [@JiLiZART](https://github.com/JiLiZART)! - Now HTML5 Preset supports `color` tag
|
||||||
|
|
||||||
|
```
|
||||||
|
[color="red"]Red Text[/color]
|
||||||
|
```
|
||||||
|
|
||||||
|
Also fixes bug with case insensitive tags in `onlyAllowTags`
|
||||||
|
Now you can pas `h1` and `H1` and they will be treated as same tags
|
||||||
|
|
||||||
|
- Updated dependencies [[`0c78831`](https://github.com/JiLiZART/BBob/commit/0c78831372b02216c9be5d95cd8b857c18f81540)]:
|
||||||
|
- @bbob/core@3.0.2
|
||||||
|
- @bbob/html@3.0.2
|
||||||
|
- @bbob/plugin-helper@3.0.2
|
||||||
|
|
||||||
## 3.0.0
|
## 3.0.0
|
||||||
|
|
||||||
### Major Changes
|
### Major Changes
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@bbob/vue2",
|
"name": "@bbob/vue2",
|
||||||
"version": "3.0.0",
|
"version": "3.0.2",
|
||||||
"description": "A BBCode to Vue2 Renderer part of @bbob",
|
"description": "A BBCode to Vue2 Renderer part of @bbob",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"vue",
|
"vue",
|
||||||
@@ -9,15 +9,15 @@
|
|||||||
"bbob"
|
"bbob"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@bbob/core": "^3.0.0",
|
"@bbob/core": "^3.0.2",
|
||||||
"@bbob/html": "^3.0.0",
|
"@bbob/html": "^3.0.2",
|
||||||
"@bbob/plugin-helper": "^3.0.0"
|
"@bbob/plugin-helper": "^3.0.2"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"vue": "2.x"
|
"vue": "2.x"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@bbob/preset-vue": "^3.0.0",
|
"@bbob/preset-vue": "^3.0.2",
|
||||||
"@testing-library/vue": "5.8.3",
|
"@testing-library/vue": "5.8.3",
|
||||||
"vue": "2.7.14",
|
"vue": "2.7.14",
|
||||||
"vue-template-compiler": "2.7.14"
|
"vue-template-compiler": "2.7.14"
|
||||||
|
|||||||
@@ -1,5 +1,23 @@
|
|||||||
# @bbob/vue3
|
# @bbob/vue3
|
||||||
|
|
||||||
|
## 3.0.2
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- [#191](https://github.com/JiLiZART/BBob/pull/191) [`0c78831`](https://github.com/JiLiZART/BBob/commit/0c78831372b02216c9be5d95cd8b857c18f81540) Thanks [@JiLiZART](https://github.com/JiLiZART)! - Now HTML5 Preset supports `color` tag
|
||||||
|
|
||||||
|
```
|
||||||
|
[color="red"]Red Text[/color]
|
||||||
|
```
|
||||||
|
|
||||||
|
Also fixes bug with case insensitive tags in `onlyAllowTags`
|
||||||
|
Now you can pas `h1` and `H1` and they will be treated as same tags
|
||||||
|
|
||||||
|
- Updated dependencies [[`0c78831`](https://github.com/JiLiZART/BBob/commit/0c78831372b02216c9be5d95cd8b857c18f81540)]:
|
||||||
|
- @bbob/core@3.0.2
|
||||||
|
- @bbob/html@3.0.2
|
||||||
|
- @bbob/plugin-helper@3.0.2
|
||||||
|
|
||||||
## 3.0.1
|
## 3.0.1
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@bbob/vue3",
|
"name": "@bbob/vue3",
|
||||||
"version": "3.0.1",
|
"version": "3.0.2",
|
||||||
"description": "A BBCode to Vue3 Renderer part of @bbob",
|
"description": "A BBCode to Vue3 Renderer part of @bbob",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"vue",
|
"vue",
|
||||||
@@ -9,15 +9,15 @@
|
|||||||
"bbob"
|
"bbob"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@bbob/core": "^3.0.0",
|
"@bbob/core": "^3.0.2",
|
||||||
"@bbob/html": "^3.0.0",
|
"@bbob/html": "^3.0.2",
|
||||||
"@bbob/plugin-helper": "^3.0.0"
|
"@bbob/plugin-helper": "^3.0.2"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"vue": "3.x"
|
"vue": "3.x"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@bbob/preset-vue": "^3.0.0",
|
"@bbob/preset-vue": "^3.0.2",
|
||||||
"@testing-library/vue": "7.0.0",
|
"@testing-library/vue": "7.0.0",
|
||||||
"vue": "3.3.4"
|
"vue": "3.3.4"
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user