2
0
mirror of https://github.com/tenrok/BBob.git synced 2026-06-20 20:00:33 +03:00

chore(release): publish v2.8.0 (#122)

* chore(lerna): don't publish packages to npm by lerna

* chore(lerna): add publish to npm command

* fix(github): publish using lerna

* chore(lerna): add publish minor

* chore(release): publish v2.8.0
This commit is contained in:
Nikolay Kostyurin
2021-11-29 00:55:29 +02:00
committed by GitHub
parent da6709d437
commit d070a66db3
39 changed files with 481 additions and 52 deletions
+2 -2
View File
@@ -28,7 +28,7 @@ jobs:
node-version: 14 node-version: 14
registry-url: https://registry.npmjs.org/ registry-url: https://registry.npmjs.org/
- run: npm ci - run: npm ci
- run: npm publish - run: npm run publish-ci
env: env:
NODE_AUTH_TOKEN: ${{secrets.npm_token}} NODE_AUTH_TOKEN: ${{secrets.npm_token}}
@@ -45,6 +45,6 @@ jobs:
node-version: 14 node-version: 14
registry-url: https://npm.pkg.github.com/ registry-url: https://npm.pkg.github.com/
- run: npm ci - run: npm ci
- run: npm publish - run: npm run publish-ci
env: env:
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}} NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
+38
View File
@@ -3,6 +3,44 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [2.8.0](https://github.com/JiLiZART/BBob/compare/v2.7.0...v2.8.0) (2021-11-28)
### Bug Fixes
* **github:** publish using lerna ([2eb9d28](https://github.com/JiLiZART/BBob/commit/2eb9d285153549e6f5b052bf4142ab54c8535789))
* **react:** adjust PropTypes for React Component `container` ([#107](https://github.com/JiLiZART/BBob/issues/107)) ([93d8027](https://github.com/JiLiZART/BBob/commit/93d802773cbe733ccf4b0124257c6fc6707c873b))
### Features
* update core deps ([#120](https://github.com/JiLiZART/BBob/issues/120)) ([da6709d](https://github.com/JiLiZART/BBob/commit/da6709d43799304e62d51cd03921e261308db80f))
### BREAKING CHANGES
* now we use swc.rs as main bundler and transpiler instead of babel
- jest now uses swc
- rollup now uses swc
* feat: benchmark now separate package with `npm start` and colored output
- benchmark as separate package with error throw if package drops performance
* feat: all lerna packages now using scripts/pkg-task
* feat(github): publish to npm and github registry
- when release was created this action automaticly publish packages to npm and github
* feat(github): move all from Travis CI to Github Actions
- code analysis and tests now using github actions
* test: increase tests coverage
- add more tests for @bbob/react, @bbob/vue2 and @bbob/parser
## [2.7.1](https://github.com/JiLiZART/bbob/compare/v2.7.0...v2.7.1) (2021-11-04) ## [2.7.1](https://github.com/JiLiZART/bbob/compare/v2.7.0...v2.7.1) (2021-11-04)
+32
View File
@@ -3,6 +3,38 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [2.8.0](https://github.com/JiLiZART/BBob/compare/v2.7.0...v2.8.0) (2021-11-28)
### Features
* update core deps ([#120](https://github.com/JiLiZART/BBob/issues/120)) ([da6709d](https://github.com/JiLiZART/BBob/commit/da6709d43799304e62d51cd03921e261308db80f))
### BREAKING CHANGES
* now we use swc.rs as main bundler and transpiler instead of babel
- jest now uses swc
- rollup now uses swc
* feat: benchmark now separate package with `npm start` and colored output
- benchmark as separate package with error throw if package drops performance
* feat: all lerna packages now using scripts/pkg-task
* feat(github): publish to npm and github registry
- when release was created this action automaticly publish packages to npm and github
* feat(github): move all from Travis CI to Github Actions
- code analysis and tests now using github actions
* test: increase tests coverage
- add more tests for @bbob/react, @bbob/vue2 and @bbob/parser
## [2.7.1](https://github.com/JiLiZART/bbob/compare/v2.7.0...v2.7.1) (2021-11-04) ## [2.7.1](https://github.com/JiLiZART/bbob/compare/v2.7.0...v2.7.1) (2021-11-04)
**Note:** Version bump only for package vue2-example **Note:** Version bump only for package vue2-example
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "vue2-example", "name": "vue2-example",
"version": "2.7.1", "version": "2.8.0",
"lockfileVersion": 1, "lockfileVersion": 1,
"requires": true, "requires": true,
"dependencies": { "dependencies": {
+3 -3
View File
@@ -1,14 +1,14 @@
{ {
"name": "vue2-example", "name": "vue2-example",
"version": "2.7.1", "version": "2.8.0",
"private": true, "private": true,
"scripts": { "scripts": {
"start": "vue-cli-service serve", "start": "vue-cli-service serve",
"generate": "vue-cli-service build" "generate": "vue-cli-service build"
}, },
"dependencies": { "dependencies": {
"@bbob/preset-vue": "^2.7.1", "@bbob/preset-vue": "^2.8.0",
"@bbob/vue2": "^2.7.1", "@bbob/vue2": "^2.8.0",
"core-js": "^3.18.2", "core-js": "^3.18.2",
"vue": "^2.6.14" "vue": "^2.6.14"
}, },
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"lerna": "2.11.0", "lerna": "2.11.0",
"version": "2.7.1", "version": "2.8.0",
"packages": [ "packages": [
"benchmark", "benchmark",
"scripts", "scripts",
+5 -3
View File
@@ -2,9 +2,11 @@
"scripts": { "scripts": {
"prepublishOnly": "npm run test", "prepublishOnly": "npm run test",
"bootstrap": "lerna bootstrap", "bootstrap": "lerna bootstrap",
"publish-from-packages": "npm run build && lerna publish from-package --yes --include-merged-tags --conventional-commits --create-release github --registry=https://registry.npmjs.org/", "publish-ci": "npm run build && lerna publish from-package --yes --include-merged-tags --conventional-commits",
"publish-all": "npm run build && lerna publish --include-merged-tags --conventional-commits --create-release github --registry=https://registry.npmjs.org/", "publish-from-packages": "npm run build && lerna publish from-package --yes --include-merged-tags --conventional-commits --create-release github --skip-npm",
"publish-patch": "npm run build && lerna publish --include-merged-tags --conventional-commits --create-release github --cd-version patch --registry=https://registry.npmjs.org/", "publish-all": "npm run build && lerna publish --include-merged-tags --conventional-commits --create-release github --skip-npm",
"publish-patch": "npm run build && lerna publish --include-merged-tags --conventional-commits --create-release github --cd-version patch --skip-npm",
"publish-minor": "npm run build && lerna publish --include-merged-tags --conventional-commits --create-release github --cd-version minor --skip-npm",
"size": "lerna run --parallel size", "size": "lerna run --parallel size",
"bundlesize": "lerna run --parallel bundlesize", "bundlesize": "lerna run --parallel bundlesize",
"test": "npm run build && lerna run --parallel link && lerna run --parallel test", "test": "npm run build && lerna run --parallel link && lerna run --parallel test",
+32
View File
@@ -3,6 +3,38 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [2.8.0](https://github.com/JiLiZART/bbob/compare/v2.7.0...v2.8.0) (2021-11-28)
### Features
* update core deps ([#120](https://github.com/JiLiZART/bbob/issues/120)) ([da6709d](https://github.com/JiLiZART/bbob/commit/da6709d43799304e62d51cd03921e261308db80f))
### BREAKING CHANGES
* now we use swc.rs as main bundler and transpiler instead of babel
- jest now uses swc
- rollup now uses swc
* feat: benchmark now separate package with `npm start` and colored output
- benchmark as separate package with error throw if package drops performance
* feat: all lerna packages now using scripts/pkg-task
* feat(github): publish to npm and github registry
- when release was created this action automaticly publish packages to npm and github
* feat(github): move all from Travis CI to Github Actions
- code analysis and tests now using github actions
* test: increase tests coverage
- add more tests for @bbob/react, @bbob/vue2 and @bbob/parser
## [2.7.1](https://github.com/JiLiZART/bbob/compare/v2.7.0...v2.7.1) (2021-11-04) ## [2.7.1](https://github.com/JiLiZART/bbob/compare/v2.7.0...v2.7.1) (2021-11-04)
**Note:** Version bump only for package @bbob/cli **Note:** Version bump only for package @bbob/cli
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "@bbob/cli", "name": "@bbob/cli",
"version": "2.7.1", "version": "2.8.0",
"lockfileVersion": 1, "lockfileVersion": 1,
"requires": true, "requires": true,
"dependencies": { "dependencies": {
+3 -3
View File
@@ -1,6 +1,6 @@
{ {
"name": "@bbob/cli", "name": "@bbob/cli",
"version": "2.7.1", "version": "2.8.0",
"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": "^2.7.1", "@bbob/html": "^2.8.0",
"@bbob/preset-html5": "^2.7.1", "@bbob/preset-html5": "^2.8.0",
"commander": "^2.15.1" "commander": "^2.15.1"
}, },
"repository": { "repository": {
+32
View File
@@ -3,6 +3,38 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [2.8.0](https://github.com/JiLiZART/bbob/compare/v2.7.0...v2.8.0) (2021-11-28)
### Features
* update core deps ([#120](https://github.com/JiLiZART/bbob/issues/120)) ([da6709d](https://github.com/JiLiZART/bbob/commit/da6709d43799304e62d51cd03921e261308db80f))
### BREAKING CHANGES
* now we use swc.rs as main bundler and transpiler instead of babel
- jest now uses swc
- rollup now uses swc
* feat: benchmark now separate package with `npm start` and colored output
- benchmark as separate package with error throw if package drops performance
* feat: all lerna packages now using scripts/pkg-task
* feat(github): publish to npm and github registry
- when release was created this action automaticly publish packages to npm and github
* feat(github): move all from Travis CI to Github Actions
- code analysis and tests now using github actions
* test: increase tests coverage
- add more tests for @bbob/react, @bbob/vue2 and @bbob/parser
## [2.7.1](https://github.com/JiLiZART/bbob/compare/v2.7.0...v2.7.1) (2021-11-04) ## [2.7.1](https://github.com/JiLiZART/bbob/compare/v2.7.0...v2.7.1) (2021-11-04)
**Note:** Version bump only for package @bbob/core **Note:** Version bump only for package @bbob/core
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "@bbob/core", "name": "@bbob/core",
"version": "2.7.1", "version": "2.8.0",
"lockfileVersion": 1, "lockfileVersion": 1,
"requires": true, "requires": true,
"dependencies": { "dependencies": {
+2 -2
View File
@@ -1,6 +1,6 @@
{ {
"name": "@bbob/core", "name": "@bbob/core",
"version": "2.7.1", "version": "2.8.0",
"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": "^2.7.1" "@bbob/parser": "^2.8.0"
}, },
"main": "lib/index.js", "main": "lib/index.js",
"module": "es/index.js", "module": "es/index.js",
+32
View File
@@ -3,6 +3,38 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [2.8.0](https://github.com/JiLiZART/bbob/compare/v2.7.0...v2.8.0) (2021-11-28)
### Features
* update core deps ([#120](https://github.com/JiLiZART/bbob/issues/120)) ([da6709d](https://github.com/JiLiZART/bbob/commit/da6709d43799304e62d51cd03921e261308db80f))
### BREAKING CHANGES
* now we use swc.rs as main bundler and transpiler instead of babel
- jest now uses swc
- rollup now uses swc
* feat: benchmark now separate package with `npm start` and colored output
- benchmark as separate package with error throw if package drops performance
* feat: all lerna packages now using scripts/pkg-task
* feat(github): publish to npm and github registry
- when release was created this action automaticly publish packages to npm and github
* feat(github): move all from Travis CI to Github Actions
- code analysis and tests now using github actions
* test: increase tests coverage
- add more tests for @bbob/react, @bbob/vue2 and @bbob/parser
## [2.7.1](https://github.com/JiLiZART/bbob/compare/v2.7.0...v2.7.1) (2021-11-04) ## [2.7.1](https://github.com/JiLiZART/bbob/compare/v2.7.0...v2.7.1) (2021-11-04)
**Note:** Version bump only for package @bbob/html **Note:** Version bump only for package @bbob/html
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "@bbob/html", "name": "@bbob/html",
"version": "2.7.1", "version": "2.8.0",
"lockfileVersion": 1, "lockfileVersion": 1,
"requires": true, "requires": true,
"dependencies": { "dependencies": {
+3 -3
View File
@@ -1,6 +1,6 @@
{ {
"name": "@bbob/html", "name": "@bbob/html",
"version": "2.7.1", "version": "2.8.0",
"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": "^2.7.1", "@bbob/core": "^2.8.0",
"@bbob/plugin-helper": "^2.7.1" "@bbob/plugin-helper": "^2.8.0"
}, },
"main": "lib/index.js", "main": "lib/index.js",
"module": "es/index.js", "module": "es/index.js",
+32
View File
@@ -3,6 +3,38 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [2.8.0](https://github.com/JiLiZART/bbob/compare/v2.7.0...v2.8.0) (2021-11-28)
### Features
* update core deps ([#120](https://github.com/JiLiZART/bbob/issues/120)) ([da6709d](https://github.com/JiLiZART/bbob/commit/da6709d43799304e62d51cd03921e261308db80f))
### BREAKING CHANGES
* now we use swc.rs as main bundler and transpiler instead of babel
- jest now uses swc
- rollup now uses swc
* feat: benchmark now separate package with `npm start` and colored output
- benchmark as separate package with error throw if package drops performance
* feat: all lerna packages now using scripts/pkg-task
* feat(github): publish to npm and github registry
- when release was created this action automaticly publish packages to npm and github
* feat(github): move all from Travis CI to Github Actions
- code analysis and tests now using github actions
* test: increase tests coverage
- add more tests for @bbob/react, @bbob/vue2 and @bbob/parser
## [2.7.1](https://github.com/JiLiZART/bbob/compare/v2.7.0...v2.7.1) (2021-11-04) ## [2.7.1](https://github.com/JiLiZART/bbob/compare/v2.7.0...v2.7.1) (2021-11-04)
**Note:** Version bump only for package @bbob/parser **Note:** Version bump only for package @bbob/parser
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "@bbob/parser", "name": "@bbob/parser",
"version": "2.7.1", "version": "2.8.0",
"lockfileVersion": 1, "lockfileVersion": 1,
"requires": true, "requires": true,
"dependencies": { "dependencies": {
+2 -2
View File
@@ -1,6 +1,6 @@
{ {
"name": "@bbob/parser", "name": "@bbob/parser",
"version": "2.7.1", "version": "2.8.0",
"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": "^2.7.1" "@bbob/plugin-helper": "^2.8.0"
}, },
"main": "lib/index.js", "main": "lib/index.js",
"module": "es/index.js", "module": "es/index.js",
+32
View File
@@ -3,6 +3,38 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [2.8.0](https://github.com/JiLiZART/bbob/compare/v2.7.0...v2.8.0) (2021-11-28)
### Features
* update core deps ([#120](https://github.com/JiLiZART/bbob/issues/120)) ([da6709d](https://github.com/JiLiZART/bbob/commit/da6709d43799304e62d51cd03921e261308db80f))
### BREAKING CHANGES
* now we use swc.rs as main bundler and transpiler instead of babel
- jest now uses swc
- rollup now uses swc
* feat: benchmark now separate package with `npm start` and colored output
- benchmark as separate package with error throw if package drops performance
* feat: all lerna packages now using scripts/pkg-task
* feat(github): publish to npm and github registry
- when release was created this action automaticly publish packages to npm and github
* feat(github): move all from Travis CI to Github Actions
- code analysis and tests now using github actions
* test: increase tests coverage
- add more tests for @bbob/react, @bbob/vue2 and @bbob/parser
## [2.7.1](https://github.com/JiLiZART/bbob/compare/v2.7.0...v2.7.1) (2021-11-04) ## [2.7.1](https://github.com/JiLiZART/bbob/compare/v2.7.0...v2.7.1) (2021-11-04)
**Note:** Version bump only for package @bbob/plugin-helper **Note:** Version bump only for package @bbob/plugin-helper
+1 -1
View File
@@ -1,5 +1,5 @@
{ {
"name": "@bbob/plugin-helper", "name": "@bbob/plugin-helper",
"version": "2.7.1", "version": "2.8.0",
"lockfileVersion": 1 "lockfileVersion": 1
} }
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "@bbob/plugin-helper", "name": "@bbob/plugin-helper",
"version": "2.7.1", "version": "2.8.0",
"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",
+32
View File
@@ -3,6 +3,38 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [2.8.0](https://github.com/JiLiZART/bbob/compare/v2.7.0...v2.8.0) (2021-11-28)
### Features
* update core deps ([#120](https://github.com/JiLiZART/bbob/issues/120)) ([da6709d](https://github.com/JiLiZART/bbob/commit/da6709d43799304e62d51cd03921e261308db80f))
### BREAKING CHANGES
* now we use swc.rs as main bundler and transpiler instead of babel
- jest now uses swc
- rollup now uses swc
* feat: benchmark now separate package with `npm start` and colored output
- benchmark as separate package with error throw if package drops performance
* feat: all lerna packages now using scripts/pkg-task
* feat(github): publish to npm and github registry
- when release was created this action automaticly publish packages to npm and github
* feat(github): move all from Travis CI to Github Actions
- code analysis and tests now using github actions
* test: increase tests coverage
- add more tests for @bbob/react, @bbob/vue2 and @bbob/parser
## [2.7.1](https://github.com/JiLiZART/bbob/compare/v2.7.0...v2.7.1) (2021-11-04) ## [2.7.1](https://github.com/JiLiZART/bbob/compare/v2.7.0...v2.7.1) (2021-11-04)
**Note:** Version bump only for package @bbob/preset-html5 **Note:** Version bump only for package @bbob/preset-html5
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "@bbob/preset-html5", "name": "@bbob/preset-html5",
"version": "2.7.1", "version": "2.8.0",
"lockfileVersion": 1, "lockfileVersion": 1,
"requires": true, "requires": true,
"dependencies": { "dependencies": {
+4 -4
View File
@@ -1,6 +1,6 @@
{ {
"name": "@bbob/preset-html5", "name": "@bbob/preset-html5",
"version": "2.7.1", "version": "2.8.0",
"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": "^2.7.1", "@bbob/plugin-helper": "^2.8.0",
"@bbob/preset": "^2.7.1" "@bbob/preset": "^2.8.0"
}, },
"devDependencies": { "devDependencies": {
"@bbob/html": "^2.7.1" "@bbob/html": "^2.8.0"
}, },
"main": "lib/index.js", "main": "lib/index.js",
"module": "es/index.js", "module": "es/index.js",
+32
View File
@@ -3,6 +3,38 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [2.8.0](https://github.com/JiLiZART/bbob/compare/v2.7.0...v2.8.0) (2021-11-28)
### Features
* update core deps ([#120](https://github.com/JiLiZART/bbob/issues/120)) ([da6709d](https://github.com/JiLiZART/bbob/commit/da6709d43799304e62d51cd03921e261308db80f))
### BREAKING CHANGES
* now we use swc.rs as main bundler and transpiler instead of babel
- jest now uses swc
- rollup now uses swc
* feat: benchmark now separate package with `npm start` and colored output
- benchmark as separate package with error throw if package drops performance
* feat: all lerna packages now using scripts/pkg-task
* feat(github): publish to npm and github registry
- when release was created this action automaticly publish packages to npm and github
* feat(github): move all from Travis CI to Github Actions
- code analysis and tests now using github actions
* test: increase tests coverage
- add more tests for @bbob/react, @bbob/vue2 and @bbob/parser
## [2.7.1](https://github.com/JiLiZART/bbob/compare/v2.7.0...v2.7.1) (2021-11-04) ## [2.7.1](https://github.com/JiLiZART/bbob/compare/v2.7.0...v2.7.1) (2021-11-04)
**Note:** Version bump only for package @bbob/preset-react **Note:** Version bump only for package @bbob/preset-react
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "@bbob/preset-react", "name": "@bbob/preset-react",
"version": "2.7.1", "version": "2.8.0",
"lockfileVersion": 1, "lockfileVersion": 1,
"requires": true, "requires": true,
"dependencies": { "dependencies": {
+3 -3
View File
@@ -1,6 +1,6 @@
{ {
"name": "@bbob/preset-react", "name": "@bbob/preset-react",
"version": "2.7.1", "version": "2.8.0",
"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": "^2.7.1" "@bbob/preset-html5": "^2.8.0"
}, },
"devDependencies": { "devDependencies": {
"@bbob/core": "^2.7.1" "@bbob/core": "^2.8.0"
}, },
"main": "lib/index.js", "main": "lib/index.js",
"module": "es/index.js", "module": "es/index.js",
+32
View File
@@ -3,6 +3,38 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [2.8.0](https://github.com/JiLiZART/bbob/compare/v2.7.0...v2.8.0) (2021-11-28)
### Features
* update core deps ([#120](https://github.com/JiLiZART/bbob/issues/120)) ([da6709d](https://github.com/JiLiZART/bbob/commit/da6709d43799304e62d51cd03921e261308db80f))
### BREAKING CHANGES
* now we use swc.rs as main bundler and transpiler instead of babel
- jest now uses swc
- rollup now uses swc
* feat: benchmark now separate package with `npm start` and colored output
- benchmark as separate package with error throw if package drops performance
* feat: all lerna packages now using scripts/pkg-task
* feat(github): publish to npm and github registry
- when release was created this action automaticly publish packages to npm and github
* feat(github): move all from Travis CI to Github Actions
- code analysis and tests now using github actions
* test: increase tests coverage
- add more tests for @bbob/react, @bbob/vue2 and @bbob/parser
## [2.7.1](https://github.com/JiLiZART/bbob/compare/v2.7.0...v2.7.1) (2021-11-04) ## [2.7.1](https://github.com/JiLiZART/bbob/compare/v2.7.0...v2.7.1) (2021-11-04)
**Note:** Version bump only for package @bbob/preset-vue **Note:** Version bump only for package @bbob/preset-vue
+3 -3
View File
@@ -1,6 +1,6 @@
{ {
"name": "@bbob/preset-vue", "name": "@bbob/preset-vue",
"version": "2.7.1", "version": "2.8.0",
"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": "^2.7.1" "@bbob/preset-html5": "^2.8.0"
}, },
"devDependencies": { "devDependencies": {
"@bbob/core": "^2.7.1" "@bbob/core": "^2.8.0"
}, },
"main": "lib/index.js", "main": "lib/index.js",
"module": "es/index.js", "module": "es/index.js",
+32
View File
@@ -3,6 +3,38 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [2.8.0](https://github.com/JiLiZART/bbob/compare/v2.7.0...v2.8.0) (2021-11-28)
### Features
* update core deps ([#120](https://github.com/JiLiZART/bbob/issues/120)) ([da6709d](https://github.com/JiLiZART/bbob/commit/da6709d43799304e62d51cd03921e261308db80f))
### BREAKING CHANGES
* now we use swc.rs as main bundler and transpiler instead of babel
- jest now uses swc
- rollup now uses swc
* feat: benchmark now separate package with `npm start` and colored output
- benchmark as separate package with error throw if package drops performance
* feat: all lerna packages now using scripts/pkg-task
* feat(github): publish to npm and github registry
- when release was created this action automaticly publish packages to npm and github
* feat(github): move all from Travis CI to Github Actions
- code analysis and tests now using github actions
* test: increase tests coverage
- add more tests for @bbob/react, @bbob/vue2 and @bbob/parser
## [2.7.1](https://github.com/JiLiZART/bbob/compare/v2.7.0...v2.7.1) (2021-11-04) ## [2.7.1](https://github.com/JiLiZART/bbob/compare/v2.7.0...v2.7.1) (2021-11-04)
**Note:** Version bump only for package @bbob/preset **Note:** Version bump only for package @bbob/preset
+1 -1
View File
@@ -1,5 +1,5 @@
{ {
"name": "@bbob/preset", "name": "@bbob/preset",
"version": "2.7.1", "version": "2.8.0",
"lockfileVersion": 1 "lockfileVersion": 1
} }
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "@bbob/preset", "name": "@bbob/preset",
"version": "2.7.1", "version": "2.8.0",
"description": "Base preset for creating extensible presets for @bbob/core", "description": "Base preset for creating extensible presets for @bbob/core",
"keywords": [ "keywords": [
"preset", "preset",
+37
View File
@@ -3,6 +3,43 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [2.8.0](https://github.com/JiLiZART/bbob/compare/v2.7.0...v2.8.0) (2021-11-28)
### Bug Fixes
* **react:** adjust PropTypes for React Component `container` ([#107](https://github.com/JiLiZART/bbob/issues/107)) ([93d8027](https://github.com/JiLiZART/bbob/commit/93d802773cbe733ccf4b0124257c6fc6707c873b))
### Features
* update core deps ([#120](https://github.com/JiLiZART/bbob/issues/120)) ([da6709d](https://github.com/JiLiZART/bbob/commit/da6709d43799304e62d51cd03921e261308db80f))
### BREAKING CHANGES
* now we use swc.rs as main bundler and transpiler instead of babel
- jest now uses swc
- rollup now uses swc
* feat: benchmark now separate package with `npm start` and colored output
- benchmark as separate package with error throw if package drops performance
* feat: all lerna packages now using scripts/pkg-task
* feat(github): publish to npm and github registry
- when release was created this action automaticly publish packages to npm and github
* feat(github): move all from Travis CI to Github Actions
- code analysis and tests now using github actions
* test: increase tests coverage
- add more tests for @bbob/react, @bbob/vue2 and @bbob/parser
## [2.7.1](https://github.com/JiLiZART/bbob/compare/v2.7.0...v2.7.1) (2021-11-04) ## [2.7.1](https://github.com/JiLiZART/bbob/compare/v2.7.0...v2.7.1) (2021-11-04)
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "@bbob/react", "name": "@bbob/react",
"version": "2.7.1", "version": "2.8.0",
"lockfileVersion": 1, "lockfileVersion": 1,
"requires": true, "requires": true,
"dependencies": { "dependencies": {
+5 -5
View File
@@ -1,6 +1,6 @@
{ {
"name": "@bbob/react", "name": "@bbob/react",
"version": "2.7.1", "version": "2.8.0",
"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": "^2.7.1", "@bbob/core": "^2.8.0",
"@bbob/html": "^2.7.1", "@bbob/html": "^2.8.0",
"@bbob/plugin-helper": "^2.7.1" "@bbob/plugin-helper": "^2.8.0"
}, },
"peerDependencies": { "peerDependencies": {
"prop-types": "15.x", "prop-types": "15.x",
"react": "15.x" "react": "15.x"
}, },
"devDependencies": { "devDependencies": {
"@bbob/preset-react": "^2.7.1", "@bbob/preset-react": "^2.8.0",
"enzyme": "^3.9.0", "enzyme": "^3.9.0",
"enzyme-adapter-react-15": "^1.0.6", "enzyme-adapter-react-15": "^1.0.6",
"react": "15.x", "react": "15.x",
+32
View File
@@ -3,6 +3,38 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [2.8.0](https://github.com/JiLiZART/bbob/compare/v2.7.0...v2.8.0) (2021-11-28)
### Features
* update core deps ([#120](https://github.com/JiLiZART/bbob/issues/120)) ([da6709d](https://github.com/JiLiZART/bbob/commit/da6709d43799304e62d51cd03921e261308db80f))
### BREAKING CHANGES
* now we use swc.rs as main bundler and transpiler instead of babel
- jest now uses swc
- rollup now uses swc
* feat: benchmark now separate package with `npm start` and colored output
- benchmark as separate package with error throw if package drops performance
* feat: all lerna packages now using scripts/pkg-task
* feat(github): publish to npm and github registry
- when release was created this action automaticly publish packages to npm and github
* feat(github): move all from Travis CI to Github Actions
- code analysis and tests now using github actions
* test: increase tests coverage
- add more tests for @bbob/react, @bbob/vue2 and @bbob/parser
## [2.7.1](https://github.com/JiLiZART/bbob/compare/v2.7.0...v2.7.1) (2021-11-04) ## [2.7.1](https://github.com/JiLiZART/bbob/compare/v2.7.0...v2.7.1) (2021-11-04)
**Note:** Version bump only for package @bbob/vue2 **Note:** Version bump only for package @bbob/vue2
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "@bbob/vue2", "name": "@bbob/vue2",
"version": "2.7.1", "version": "2.8.0",
"lockfileVersion": 1, "lockfileVersion": 1,
"requires": true, "requires": true,
"dependencies": { "dependencies": {
+5 -5
View File
@@ -1,6 +1,6 @@
{ {
"name": "@bbob/vue2", "name": "@bbob/vue2",
"version": "2.7.1", "version": "2.8.0",
"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": "^2.7.1", "@bbob/core": "^2.8.0",
"@bbob/html": "^2.7.1", "@bbob/html": "^2.8.0",
"@bbob/plugin-helper": "^2.7.1" "@bbob/plugin-helper": "^2.8.0"
}, },
"peerDependencies": { "peerDependencies": {
"vue": "2.x" "vue": "2.x"
}, },
"devDependencies": { "devDependencies": {
"@bbob/preset-vue": "2.7.1", "@bbob/preset-vue": "^2.8.0",
"@testing-library/vue": "5.6.2", "@testing-library/vue": "5.6.2",
"vue": "2.6.12", "vue": "2.6.12",
"vue-template-compiler": "2.6.12" "vue-template-compiler": "2.6.12"