2
0
mirror of https://github.com/tenrok/BBob.git synced 2026-05-15 11:59:37 +03:00
This commit is contained in:
Nikolay Kostyurin
2018-10-12 00:45:25 +02:00
parent 575c1bb932
commit 6d37793001
14 changed files with 146 additions and 17 deletions
+39
View File
@@ -0,0 +1,39 @@
# Change Log
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
<a name="2.2.0"></a>
# 2.2.0 (2018-10-11)
### Bug Fixes
* **core:** string walk api test error ([bdd8bbd](https://github.com/JiLiZART/bbob/commit/bdd8bbd))
* **html:** add more tests ([4ebc512](https://github.com/JiLiZART/bbob/commit/4ebc512))
* **html:** rigt import to support three shaking ([485852d](https://github.com/JiLiZART/bbob/commit/485852d))
* **parser:** dependency fail ([7300535](https://github.com/JiLiZART/bbob/commit/7300535))
* **parser:** only allowed tags error ([d3e8e4a](https://github.com/JiLiZART/bbob/commit/d3e8e4a))
* **parser:** remove bad code ([4d9dc34](https://github.com/JiLiZART/bbob/commit/4d9dc34))
* **parser:** tokenizer error with quotemark strings ([7f40050](https://github.com/JiLiZART/bbob/commit/7f40050))
* **plugin-helper:** better handle content of TagNode ([505152b](https://github.com/JiLiZART/bbob/commit/505152b))
* **react:** remove jsx ([ada2c00](https://github.com/JiLiZART/bbob/commit/ada2c00))
### Features
* react render support, move some helper functions to plugin-helper ([1a84968](https://github.com/JiLiZART/bbob/commit/1a84968))
* **bbob:** add codecov support to travis ([44183fd](https://github.com/JiLiZART/bbob/commit/44183fd))
* **core:** add helper function to plugin api ([e189a39](https://github.com/JiLiZART/bbob/commit/e189a39))
* **core:** implement plugin api ([ee047e8](https://github.com/JiLiZART/bbob/commit/ee047e8))
* **core:** raw tree property support ([bdfd3f6](https://github.com/JiLiZART/bbob/commit/bdfd3f6))
* **lexer:** new lexer ([#1](https://github.com/JiLiZART/bbob/issues/1)) ([8882651](https://github.com/JiLiZART/bbob/commit/8882651))
* **parser:** add support for custom tokenizer ([ce03b2f](https://github.com/JiLiZART/bbob/commit/ce03b2f))
* **parser:** better handlinf of unclosed tags like '[My unclosed and [closed] tag' ([b49b743](https://github.com/JiLiZART/bbob/commit/b49b743))
* **parser:** better line and column counting support in tokens ([1c3bebe](https://github.com/JiLiZART/bbob/commit/1c3bebe))
* **parser:** custom open and close tags support, html tags tests ([#3](https://github.com/JiLiZART/bbob/issues/3)) ([790825a](https://github.com/JiLiZART/bbob/commit/790825a))
* **parser:** inconsistent tag detection test ([2eb83c1](https://github.com/JiLiZART/bbob/commit/2eb83c1))
* **parser:** optimize size ([4c8dbed](https://github.com/JiLiZART/bbob/commit/4c8dbed))
* base preset package '[@bbob](https://github.com/bbob)/preset' ([b63864c](https://github.com/JiLiZART/bbob/commit/b63864c))
* new [@bbob](https://github.com/bbob)/html api ([#4](https://github.com/JiLiZART/bbob/issues/4)) ([575c1bb](https://github.com/JiLiZART/bbob/commit/575c1bb))
* **preset-html5:** add basic preset with tests ([18ab61b](https://github.com/JiLiZART/bbob/commit/18ab61b))
+1 -1
View File
@@ -15,5 +15,5 @@
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"version": "2.1.2"
"version": "2.2.0"
}
+11
View File
@@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
<a name="2.2.0"></a>
# 2.2.0 (2018-10-11)
### Features
* new [@bbob](https://github.com/bbob)/html api ([#4](https://github.com/JiLiZART/bbob/issues/4)) ([575c1bb](https://github.com/JiLiZART/bbob/commit/575c1bb))
<a name="2.0.3"></a>
## <small>2.0.3 (2018-10-07)</small>
+3 -3
View File
@@ -1,6 +1,6 @@
{
"name": "@bbob/cli",
"version": "2.0.3",
"version": "2.2.0",
"description": "Comand line bbcode parser",
"main": "lib/bbob.js",
"bin": {
@@ -10,8 +10,8 @@
"lib": "lib"
},
"dependencies": {
"@bbob/html": "^2.1.1",
"@bbob/preset-html5": "^2.1.2",
"@bbob/html": "^2.2.0",
"@bbob/preset-html5": "^2.2.0",
"commander": "^2.15.1"
},
"repository": {
+19
View File
@@ -3,6 +3,25 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
<a name="2.2.0"></a>
# 2.2.0 (2018-10-11)
### Bug Fixes
* **core:** string walk api test error ([bdd8bbd](https://github.com/JiLiZART/bbob/commit/bdd8bbd))
### Features
* **core:** add helper function to plugin api ([e189a39](https://github.com/JiLiZART/bbob/commit/e189a39))
* **core:** implement plugin api ([ee047e8](https://github.com/JiLiZART/bbob/commit/ee047e8))
* **core:** raw tree property support ([bdfd3f6](https://github.com/JiLiZART/bbob/commit/bdfd3f6))
* new [@bbob](https://github.com/bbob)/html api ([#4](https://github.com/JiLiZART/bbob/issues/4)) ([575c1bb](https://github.com/JiLiZART/bbob/commit/575c1bb))
<a name="2.1.0"></a>
## 2.1.0 (2018-10-07)
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@bbob/core",
"version": "2.1.0",
"version": "2.2.0",
"description": "Fast, flexible, and lean implementation of BBcode parser with plugins",
"keywords": [
"bbcode",
+20
View File
@@ -3,6 +3,26 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
<a name="2.2.0"></a>
# 2.2.0 (2018-10-11)
### Bug Fixes
* **html:** add more tests ([4ebc512](https://github.com/JiLiZART/bbob/commit/4ebc512))
* **html:** rigt import to support three shaking ([485852d](https://github.com/JiLiZART/bbob/commit/485852d))
### Features
* react render support, move some helper functions to plugin-helper ([1a84968](https://github.com/JiLiZART/bbob/commit/1a84968))
* **parser:** custom open and close tags support, html tags tests ([#3](https://github.com/JiLiZART/bbob/issues/3)) ([790825a](https://github.com/JiLiZART/bbob/commit/790825a))
* base preset package '[@bbob](https://github.com/bbob)/preset' ([b63864c](https://github.com/JiLiZART/bbob/commit/b63864c))
* new [@bbob](https://github.com/bbob)/html api ([#4](https://github.com/JiLiZART/bbob/issues/4)) ([575c1bb](https://github.com/JiLiZART/bbob/commit/575c1bb))
<a name="2.1.1"></a>
## [2.1.1](https://github.com/JiLiZART/bbob/compare/@bbob/html@2.1.0...@bbob/html@2.1.1) (2018-10-07)
+3 -3
View File
@@ -1,11 +1,11 @@
{
"name": "@bbob/html",
"version": "2.1.1",
"version": "2.2.0",
"description": "HTML renderer for BBCode pareser BBob",
"keywords": [],
"dependencies": {
"@bbob/plugin-helper": "^2.0.1",
"@bbob/core": "^2.0.1"
"@bbob/core": "^2.2.0",
"@bbob/plugin-helper": "^2.0.1"
},
"main": "lib/index.js",
"module": "es/index.js",
+15
View File
@@ -3,6 +3,21 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
<a name="2.2.0"></a>
# 2.2.0 (2018-10-11)
### Features
* react render support, move some helper functions to plugin-helper ([1a84968](https://github.com/JiLiZART/bbob/commit/1a84968))
* **parser:** custom open and close tags support, html tags tests ([#3](https://github.com/JiLiZART/bbob/issues/3)) ([790825a](https://github.com/JiLiZART/bbob/commit/790825a))
* **preset-html5:** add basic preset with tests ([18ab61b](https://github.com/JiLiZART/bbob/commit/18ab61b))
* base preset package '[@bbob](https://github.com/bbob)/preset' ([b63864c](https://github.com/JiLiZART/bbob/commit/b63864c))
* new [@bbob](https://github.com/bbob)/html api ([#4](https://github.com/JiLiZART/bbob/issues/4)) ([575c1bb](https://github.com/JiLiZART/bbob/commit/575c1bb))
<a name="2.1.2"></a>
## <small>2.1.2 (2018-10-07)</small>
+2 -2
View File
@@ -1,6 +1,6 @@
{
"name": "@bbob/preset-html5",
"version": "2.1.2",
"version": "2.2.0",
"description": "HTML5 Preset to transform BBCode to HTML",
"keywords": [
"bbcode",
@@ -14,7 +14,7 @@
"@bbob/preset": "^2.1.0"
},
"devDependencies": {
"@bbob/html": "^2.1.1"
"@bbob/html": "^2.2.0"
},
"main": "lib/index.js",
"module": "es/index.js",
+8
View File
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
<a name="2.2.0"></a>
# 2.2.0 (2018-10-11)
**Note:** Version bump only for package @bbob/preset-react
<a name="2.0.3"></a>
## <small>2.0.3 (2018-10-07)</small>
+3 -3
View File
@@ -1,6 +1,6 @@
{
"name": "@bbob/preset-react",
"version": "2.0.3",
"version": "2.2.0",
"description": "React preset to transform BBCode to React Components",
"keywords": [
"bbcode",
@@ -10,10 +10,10 @@
"transform"
],
"dependencies": {
"@bbob/preset-html5": "^2.1.2"
"@bbob/preset-html5": "^2.2.0"
},
"devDependencies": {
"@bbob/core": "^2.1.0"
"@bbob/core": "^2.2.0"
},
"main": "lib/index.js",
"module": "es/index.js",
+17
View File
@@ -3,6 +3,23 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
<a name="2.2.0"></a>
# 2.2.0 (2018-10-11)
### Bug Fixes
* **react:** remove jsx ([ada2c00](https://github.com/JiLiZART/bbob/commit/ada2c00))
### Features
* react render support, move some helper functions to plugin-helper ([1a84968](https://github.com/JiLiZART/bbob/commit/1a84968))
* new [@bbob](https://github.com/bbob)/html api ([#4](https://github.com/JiLiZART/bbob/issues/4)) ([575c1bb](https://github.com/JiLiZART/bbob/commit/575c1bb))
<a name="2.0.3"></a>
## <small>2.0.3 (2018-10-07)</small>
+4 -4
View File
@@ -1,6 +1,6 @@
{
"name": "@bbob/react",
"version": "2.0.3",
"version": "2.2.0",
"description": "",
"keywords": [
"bbob",
@@ -8,10 +8,10 @@
"helper"
],
"dependencies": {
"@bbob/core": "^2.1.0",
"@bbob/html": "^2.1.1",
"@bbob/core": "^2.2.0",
"@bbob/html": "^2.2.0",
"@bbob/plugin-helper": "^2.0.1",
"@bbob/preset-react": "^2.0.3",
"@bbob/preset-react": "^2.2.0",
"prop-types": "^15.6.1"
},
"peerDependencies": {