2
0
mirror of https://github.com/tenrok/BBob.git synced 2026-05-15 11:59:37 +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
registry-url: https://registry.npmjs.org/
- run: npm ci
- run: npm publish
- run: npm run publish-ci
env:
NODE_AUTH_TOKEN: ${{secrets.npm_token}}
@@ -45,6 +45,6 @@ jobs:
node-version: 14
registry-url: https://npm.pkg.github.com/
- run: npm ci
- run: npm publish
- run: npm run publish-ci
env:
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.
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)
+32
View File
@@ -3,6 +3,38 @@
All notable changes to this project will be documented in this file.
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)
**Note:** Version bump only for package vue2-example
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "vue2-example",
"version": "2.7.1",
"version": "2.8.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
+3 -3
View File
@@ -1,14 +1,14 @@
{
"name": "vue2-example",
"version": "2.7.1",
"version": "2.8.0",
"private": true,
"scripts": {
"start": "vue-cli-service serve",
"generate": "vue-cli-service build"
},
"dependencies": {
"@bbob/preset-vue": "^2.7.1",
"@bbob/vue2": "^2.7.1",
"@bbob/preset-vue": "^2.8.0",
"@bbob/vue2": "^2.8.0",
"core-js": "^3.18.2",
"vue": "^2.6.14"
},
+1 -1
View File
@@ -1,6 +1,6 @@
{
"lerna": "2.11.0",
"version": "2.7.1",
"version": "2.8.0",
"packages": [
"benchmark",
"scripts",
+5 -3
View File
@@ -2,9 +2,11 @@
"scripts": {
"prepublishOnly": "npm run test",
"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-all": "npm run build && lerna publish --include-merged-tags --conventional-commits --create-release github --registry=https://registry.npmjs.org/",
"publish-patch": "npm run build && lerna publish --include-merged-tags --conventional-commits --create-release github --cd-version patch --registry=https://registry.npmjs.org/",
"publish-ci": "npm run build && lerna publish from-package --yes --include-merged-tags --conventional-commits",
"publish-from-packages": "npm run build && lerna publish from-package --yes --include-merged-tags --conventional-commits --create-release github --skip-npm",
"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",
"bundlesize": "lerna run --parallel bundlesize",
"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.
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)
**Note:** Version bump only for package @bbob/cli
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@bbob/cli",
"version": "2.7.1",
"version": "2.8.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
+3 -3
View File
@@ -1,6 +1,6 @@
{
"name": "@bbob/cli",
"version": "2.7.1",
"version": "2.8.0",
"description": "Comand line bbcode parser",
"main": "lib/cli.js",
"bin": {
@@ -10,8 +10,8 @@
"lib": "lib"
},
"dependencies": {
"@bbob/html": "^2.7.1",
"@bbob/preset-html5": "^2.7.1",
"@bbob/html": "^2.8.0",
"@bbob/preset-html5": "^2.8.0",
"commander": "^2.15.1"
},
"repository": {
+32
View File
@@ -3,6 +3,38 @@
All notable changes to this project will be documented in this file.
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)
**Note:** Version bump only for package @bbob/core
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@bbob/core",
"version": "2.7.1",
"version": "2.8.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
+2 -2
View File
@@ -1,6 +1,6 @@
{
"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",
"keywords": [
"bbcode",
@@ -20,7 +20,7 @@
"core"
],
"dependencies": {
"@bbob/parser": "^2.7.1"
"@bbob/parser": "^2.8.0"
},
"main": "lib/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.
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)
**Note:** Version bump only for package @bbob/html
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@bbob/html",
"version": "2.7.1",
"version": "2.8.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
+3 -3
View File
@@ -1,6 +1,6 @@
{
"name": "@bbob/html",
"version": "2.7.1",
"version": "2.8.0",
"description": "A BBCode to HTML Renderer part of @bbob",
"keywords": [
"html",
@@ -9,8 +9,8 @@
"bbob"
],
"dependencies": {
"@bbob/core": "^2.7.1",
"@bbob/plugin-helper": "^2.7.1"
"@bbob/core": "^2.8.0",
"@bbob/plugin-helper": "^2.8.0"
},
"main": "lib/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.
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)
**Note:** Version bump only for package @bbob/parser
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@bbob/parser",
"version": "2.7.1",
"version": "2.8.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
+2 -2
View File
@@ -1,6 +1,6 @@
{
"name": "@bbob/parser",
"version": "2.7.1",
"version": "2.8.0",
"description": "A BBCode to AST Parser part of @bbob",
"keywords": [
"bbcode",
@@ -13,7 +13,7 @@
"parse"
],
"dependencies": {
"@bbob/plugin-helper": "^2.7.1"
"@bbob/plugin-helper": "^2.8.0"
},
"main": "lib/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.
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)
**Note:** Version bump only for package @bbob/plugin-helper
+1 -1
View File
@@ -1,5 +1,5 @@
{
"name": "@bbob/plugin-helper",
"version": "2.7.1",
"version": "2.8.0",
"lockfileVersion": 1
}
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@bbob/plugin-helper",
"version": "2.7.1",
"version": "2.8.0",
"description": "Set of utils to help write plugins for @bbob/core",
"keywords": [
"bbob",
+32
View File
@@ -3,6 +3,38 @@
All notable changes to this project will be documented in this file.
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)
**Note:** Version bump only for package @bbob/preset-html5
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@bbob/preset-html5",
"version": "2.7.1",
"version": "2.8.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
+4 -4
View File
@@ -1,6 +1,6 @@
{
"name": "@bbob/preset-html5",
"version": "2.7.1",
"version": "2.8.0",
"description": "HTML5 preset to transform BBCode to HTML for @bbob/parser",
"keywords": [
"preset",
@@ -8,11 +8,11 @@
"bbob"
],
"dependencies": {
"@bbob/plugin-helper": "^2.7.1",
"@bbob/preset": "^2.7.1"
"@bbob/plugin-helper": "^2.8.0",
"@bbob/preset": "^2.8.0"
},
"devDependencies": {
"@bbob/html": "^2.7.1"
"@bbob/html": "^2.8.0"
},
"main": "lib/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.
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)
**Note:** Version bump only for package @bbob/preset-react
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@bbob/preset-react",
"version": "2.7.1",
"version": "2.8.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
+3 -3
View File
@@ -1,6 +1,6 @@
{
"name": "@bbob/preset-react",
"version": "2.7.1",
"version": "2.8.0",
"description": "React preset to transform BBCode to React for @bbob/react",
"keywords": [
"bbob",
@@ -8,10 +8,10 @@
"react"
],
"dependencies": {
"@bbob/preset-html5": "^2.7.1"
"@bbob/preset-html5": "^2.8.0"
},
"devDependencies": {
"@bbob/core": "^2.7.1"
"@bbob/core": "^2.8.0"
},
"main": "lib/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.
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)
**Note:** Version bump only for package @bbob/preset-vue
+3 -3
View File
@@ -1,6 +1,6 @@
{
"name": "@bbob/preset-vue",
"version": "2.7.1",
"version": "2.8.0",
"description": "Vue preset to transform BBCode to Vue for @bbob/vue*",
"keywords": [
"bbob",
@@ -8,10 +8,10 @@
"vue"
],
"dependencies": {
"@bbob/preset-html5": "^2.7.1"
"@bbob/preset-html5": "^2.8.0"
},
"devDependencies": {
"@bbob/core": "^2.7.1"
"@bbob/core": "^2.8.0"
},
"main": "lib/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.
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)
**Note:** Version bump only for package @bbob/preset
+1 -1
View File
@@ -1,5 +1,5 @@
{
"name": "@bbob/preset",
"version": "2.7.1",
"version": "2.8.0",
"lockfileVersion": 1
}
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@bbob/preset",
"version": "2.7.1",
"version": "2.8.0",
"description": "Base preset for creating extensible presets for @bbob/core",
"keywords": [
"preset",
+37
View File
@@ -3,6 +3,43 @@
All notable changes to this project will be documented in this file.
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)
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@bbob/react",
"version": "2.7.1",
"version": "2.8.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
+5 -5
View File
@@ -1,6 +1,6 @@
{
"name": "@bbob/react",
"version": "2.7.1",
"version": "2.8.0",
"description": "A BBCode to React Renderer part of @bbob",
"keywords": [
"react",
@@ -9,16 +9,16 @@
"bbob"
],
"dependencies": {
"@bbob/core": "^2.7.1",
"@bbob/html": "^2.7.1",
"@bbob/plugin-helper": "^2.7.1"
"@bbob/core": "^2.8.0",
"@bbob/html": "^2.8.0",
"@bbob/plugin-helper": "^2.8.0"
},
"peerDependencies": {
"prop-types": "15.x",
"react": "15.x"
},
"devDependencies": {
"@bbob/preset-react": "^2.7.1",
"@bbob/preset-react": "^2.8.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-15": "^1.0.6",
"react": "15.x",
+32
View File
@@ -3,6 +3,38 @@
All notable changes to this project will be documented in this file.
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)
**Note:** Version bump only for package @bbob/vue2
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@bbob/vue2",
"version": "2.7.1",
"version": "2.8.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
+5 -5
View File
@@ -1,6 +1,6 @@
{
"name": "@bbob/vue2",
"version": "2.7.1",
"version": "2.8.0",
"description": "A BBCode to Vue2 Renderer part of @bbob",
"keywords": [
"vue",
@@ -9,15 +9,15 @@
"bbob"
],
"dependencies": {
"@bbob/core": "^2.7.1",
"@bbob/html": "^2.7.1",
"@bbob/plugin-helper": "^2.7.1"
"@bbob/core": "^2.8.0",
"@bbob/html": "^2.8.0",
"@bbob/plugin-helper": "^2.8.0"
},
"peerDependencies": {
"vue": "2.x"
},
"devDependencies": {
"@bbob/preset-vue": "2.7.1",
"@bbob/preset-vue": "^2.8.0",
"@testing-library/vue": "5.6.2",
"vue": "2.6.12",
"vue-template-compiler": "2.6.12"