mirror of
https://github.com/tenrok/BBob.git
synced 2026-05-15 11:59:37 +03:00
chore(release): publish v2.8.1 (#139)
* fix: lerna issue and publish patch * fix: lerna publish scripts * chore(release): bump version to v2.8.1
This commit is contained in:
@@ -11,10 +11,10 @@ jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/setup-node@v2
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: 14
|
||||
node-version: '16.x'
|
||||
- run: npm ci
|
||||
- run: npm run bootstrap
|
||||
- run: npm test
|
||||
@@ -23,16 +23,16 @@ jobs:
|
||||
needs: build
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/setup-node@v2
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: 14
|
||||
registry-url: https://registry.npmjs.org/
|
||||
node-version: '16.x'
|
||||
registry-url: 'https://registry.npmjs.org'
|
||||
- run: npm ci
|
||||
- run: npm run bootstrap
|
||||
- run: npm run publish-ci
|
||||
env:
|
||||
NODE_AUTH_TOKEN: ${{secrets.npm_token}}
|
||||
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
||||
|
||||
publish-gpr:
|
||||
needs: build
|
||||
@@ -41,13 +41,13 @@ jobs:
|
||||
contents: read
|
||||
packages: write
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/setup-node@v2
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: 14
|
||||
registry-url: https://npm.pkg.github.com/
|
||||
node-version: '16.x'
|
||||
registry-url: 'https://npm.pkg.github.com'
|
||||
- run: npm ci
|
||||
- run: npm run bootstrap
|
||||
- run: npm run publish-ci
|
||||
env:
|
||||
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
|
||||
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
@@ -3,6 +3,24 @@
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
## [2.8.1](https://github.com/JiLiZART/BBob/compare/v2.8.0...v2.8.1) (2022-05-24)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **github:** lerna bootsrap before publish ([4e4b1e6](https://github.com/JiLiZART/BBob/commit/4e4b1e63ddd97e98446ab2413dcabf4bff2819e5))
|
||||
* lerna issue and publish patch ([daf9b02](https://github.com/JiLiZART/BBob/commit/daf9b02199cfb80035cb3b629093af0e605c1854))
|
||||
* lerna publish scripts ([2b6e11a](https://github.com/JiLiZART/BBob/commit/2b6e11a07732e8f8ca4e476b7d56eeca8613a80a))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **react:** update to react 18 and testing-library ([#138](https://github.com/JiLiZART/BBob/issues/138)) ([502362c](https://github.com/JiLiZART/BBob/commit/502362cc8cf63104e6107aa01b7e3b1af6cf464e))
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [2.8.0](https://github.com/JiLiZART/BBob/compare/v2.7.0...v2.8.0) (2021-11-28)
|
||||
|
||||
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"lerna": "2.11.0",
|
||||
"version": "2.8.0",
|
||||
"version": "2.8.1",
|
||||
"packages": [
|
||||
"benchmark",
|
||||
"scripts",
|
||||
|
||||
Generated
+16738
-898
File diff suppressed because it is too large
Load Diff
+2
-2
@@ -5,8 +5,8 @@
|
||||
"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",
|
||||
"publish-patch": "npm run build && lerna version patch --include-merged-tags --conventional-commits --no-git-tag-version --no-private",
|
||||
"publish-minor": "npm run build && lerna version minor --include-merged-tags --conventional-commits --no-git-tag-version --no-private",
|
||||
"size": "lerna run --parallel size",
|
||||
"bundlesize": "lerna run --parallel bundlesize",
|
||||
"test": "npm run build && lerna run --parallel link && lerna run --parallel test",
|
||||
|
||||
@@ -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.
|
||||
|
||||
## [2.8.1](https://github.com/JiLiZART/bbob/compare/v2.8.0...v2.8.1) (2022-05-24)
|
||||
|
||||
**Note:** Version bump only for package @bbob/cli
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [2.8.0](https://github.com/JiLiZART/bbob/compare/v2.7.0...v2.8.0) (2021-11-28)
|
||||
|
||||
|
||||
|
||||
Generated
+1
-1
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@bbob/cli",
|
||||
"version": "2.8.0",
|
||||
"version": "2.8.1",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@bbob/cli",
|
||||
"version": "2.8.0",
|
||||
"version": "2.8.1",
|
||||
"description": "Comand line bbcode parser",
|
||||
"main": "lib/cli.js",
|
||||
"bin": {
|
||||
@@ -10,8 +10,8 @@
|
||||
"lib": "lib"
|
||||
},
|
||||
"dependencies": {
|
||||
"@bbob/html": "^2.8.0",
|
||||
"@bbob/preset-html5": "^2.8.0",
|
||||
"@bbob/html": "^2.8.1",
|
||||
"@bbob/preset-html5": "^2.8.1",
|
||||
"commander": "^2.15.1"
|
||||
},
|
||||
"repository": {
|
||||
|
||||
@@ -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.
|
||||
|
||||
## [2.8.1](https://github.com/JiLiZART/bbob/compare/v2.8.0...v2.8.1) (2022-05-24)
|
||||
|
||||
**Note:** Version bump only for package @bbob/core
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [2.8.0](https://github.com/JiLiZART/bbob/compare/v2.7.0...v2.8.0) (2021-11-28)
|
||||
|
||||
|
||||
|
||||
Generated
+1
-1
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@bbob/core",
|
||||
"version": "2.8.0",
|
||||
"version": "2.8.1",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@bbob/core",
|
||||
"version": "2.8.0",
|
||||
"version": "2.8.1",
|
||||
"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.8.0"
|
||||
"@bbob/parser": "^2.8.1"
|
||||
},
|
||||
"main": "lib/index.js",
|
||||
"module": "es/index.js",
|
||||
|
||||
@@ -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.
|
||||
|
||||
## [2.8.1](https://github.com/JiLiZART/bbob/compare/v2.8.0...v2.8.1) (2022-05-24)
|
||||
|
||||
**Note:** Version bump only for package @bbob/html
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [2.8.0](https://github.com/JiLiZART/bbob/compare/v2.7.0...v2.8.0) (2021-11-28)
|
||||
|
||||
|
||||
|
||||
Generated
+1
-1
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@bbob/html",
|
||||
"version": "2.8.0",
|
||||
"version": "2.8.1",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@bbob/html",
|
||||
"version": "2.8.0",
|
||||
"version": "2.8.1",
|
||||
"description": "A BBCode to HTML Renderer part of @bbob",
|
||||
"keywords": [
|
||||
"html",
|
||||
@@ -9,8 +9,8 @@
|
||||
"bbob"
|
||||
],
|
||||
"dependencies": {
|
||||
"@bbob/core": "^2.8.0",
|
||||
"@bbob/plugin-helper": "^2.8.0"
|
||||
"@bbob/core": "^2.8.1",
|
||||
"@bbob/plugin-helper": "^2.8.1"
|
||||
},
|
||||
"main": "lib/index.js",
|
||||
"module": "es/index.js",
|
||||
|
||||
@@ -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.
|
||||
|
||||
## [2.8.1](https://github.com/JiLiZART/bbob/compare/v2.8.0...v2.8.1) (2022-05-24)
|
||||
|
||||
**Note:** Version bump only for package @bbob/parser
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [2.8.0](https://github.com/JiLiZART/bbob/compare/v2.7.0...v2.8.0) (2021-11-28)
|
||||
|
||||
|
||||
|
||||
Generated
+1
-1
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@bbob/parser",
|
||||
"version": "2.8.0",
|
||||
"version": "2.8.1",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@bbob/parser",
|
||||
"version": "2.8.0",
|
||||
"version": "2.8.1",
|
||||
"description": "A BBCode to AST Parser part of @bbob",
|
||||
"keywords": [
|
||||
"bbcode",
|
||||
@@ -13,7 +13,7 @@
|
||||
"parse"
|
||||
],
|
||||
"dependencies": {
|
||||
"@bbob/plugin-helper": "^2.8.0"
|
||||
"@bbob/plugin-helper": "^2.8.1"
|
||||
},
|
||||
"main": "lib/index.js",
|
||||
"module": "es/index.js",
|
||||
|
||||
@@ -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.
|
||||
|
||||
## [2.8.1](https://github.com/JiLiZART/bbob/compare/v2.8.0...v2.8.1) (2022-05-24)
|
||||
|
||||
**Note:** Version bump only for package @bbob/plugin-helper
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [2.8.0](https://github.com/JiLiZART/bbob/compare/v2.7.0...v2.8.0) (2021-11-28)
|
||||
|
||||
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"name": "@bbob/plugin-helper",
|
||||
"version": "2.8.0",
|
||||
"version": "2.8.1",
|
||||
"lockfileVersion": 1
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@bbob/plugin-helper",
|
||||
"version": "2.8.0",
|
||||
"version": "2.8.1",
|
||||
"description": "Set of utils to help write plugins for @bbob/core",
|
||||
"keywords": [
|
||||
"bbob",
|
||||
|
||||
@@ -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.
|
||||
|
||||
## [2.8.1](https://github.com/JiLiZART/bbob/compare/v2.8.0...v2.8.1) (2022-05-24)
|
||||
|
||||
**Note:** Version bump only for package @bbob/preset-html5
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [2.8.0](https://github.com/JiLiZART/bbob/compare/v2.7.0...v2.8.0) (2021-11-28)
|
||||
|
||||
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@bbob/preset-html5",
|
||||
"version": "2.8.0",
|
||||
"version": "2.8.1",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@bbob/preset-html5",
|
||||
"version": "2.8.0",
|
||||
"version": "2.8.1",
|
||||
"description": "HTML5 preset to transform BBCode to HTML for @bbob/parser",
|
||||
"keywords": [
|
||||
"preset",
|
||||
@@ -8,11 +8,11 @@
|
||||
"bbob"
|
||||
],
|
||||
"dependencies": {
|
||||
"@bbob/plugin-helper": "^2.8.0",
|
||||
"@bbob/preset": "^2.8.0"
|
||||
"@bbob/plugin-helper": "^2.8.1",
|
||||
"@bbob/preset": "^2.8.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@bbob/html": "^2.8.0"
|
||||
"@bbob/html": "^2.8.1"
|
||||
},
|
||||
"main": "lib/index.js",
|
||||
"module": "es/index.js",
|
||||
|
||||
@@ -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.
|
||||
|
||||
## [2.8.1](https://github.com/JiLiZART/bbob/compare/v2.8.0...v2.8.1) (2022-05-24)
|
||||
|
||||
**Note:** Version bump only for package @bbob/preset-react
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [2.8.0](https://github.com/JiLiZART/bbob/compare/v2.7.0...v2.8.0) (2021-11-28)
|
||||
|
||||
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@bbob/preset-react",
|
||||
"version": "2.8.0",
|
||||
"version": "2.8.1",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@bbob/preset-react",
|
||||
"version": "2.8.0",
|
||||
"version": "2.8.1",
|
||||
"description": "React preset to transform BBCode to React for @bbob/react",
|
||||
"keywords": [
|
||||
"bbob",
|
||||
@@ -8,10 +8,10 @@
|
||||
"react"
|
||||
],
|
||||
"dependencies": {
|
||||
"@bbob/preset-html5": "^2.8.0"
|
||||
"@bbob/preset-html5": "^2.8.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@bbob/core": "^2.8.0"
|
||||
"@bbob/core": "^2.8.1"
|
||||
},
|
||||
"main": "lib/index.js",
|
||||
"module": "es/index.js",
|
||||
|
||||
@@ -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.
|
||||
|
||||
## [2.8.1](https://github.com/JiLiZART/bbob/compare/v2.8.0...v2.8.1) (2022-05-24)
|
||||
|
||||
**Note:** Version bump only for package @bbob/preset-vue
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [2.8.0](https://github.com/JiLiZART/bbob/compare/v2.7.0...v2.8.0) (2021-11-28)
|
||||
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@bbob/preset-vue",
|
||||
"version": "2.8.0",
|
||||
"version": "2.8.1",
|
||||
"description": "Vue preset to transform BBCode to Vue for @bbob/vue*",
|
||||
"keywords": [
|
||||
"bbob",
|
||||
@@ -8,10 +8,10 @@
|
||||
"vue"
|
||||
],
|
||||
"dependencies": {
|
||||
"@bbob/preset-html5": "^2.8.0"
|
||||
"@bbob/preset-html5": "^2.8.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@bbob/core": "^2.8.0"
|
||||
"@bbob/core": "^2.8.1"
|
||||
},
|
||||
"main": "lib/index.js",
|
||||
"module": "es/index.js",
|
||||
|
||||
@@ -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.
|
||||
|
||||
## [2.8.1](https://github.com/JiLiZART/bbob/compare/v2.8.0...v2.8.1) (2022-05-24)
|
||||
|
||||
**Note:** Version bump only for package @bbob/preset
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [2.8.0](https://github.com/JiLiZART/bbob/compare/v2.7.0...v2.8.0) (2021-11-28)
|
||||
|
||||
|
||||
|
||||
Generated
+1
-1
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"name": "@bbob/preset",
|
||||
"version": "2.8.0",
|
||||
"version": "2.8.1",
|
||||
"lockfileVersion": 1
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@bbob/preset",
|
||||
"version": "2.8.0",
|
||||
"version": "2.8.1",
|
||||
"description": "Base preset for creating extensible presets for @bbob/core",
|
||||
"keywords": [
|
||||
"preset",
|
||||
|
||||
@@ -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.
|
||||
|
||||
## [2.8.1](https://github.com/JiLiZART/bbob/compare/v2.8.0...v2.8.1) (2022-05-24)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **react:** update to react 18 and testing-library ([#138](https://github.com/JiLiZART/bbob/issues/138)) ([502362c](https://github.com/JiLiZART/bbob/commit/502362cc8cf63104e6107aa01b7e3b1af6cf464e))
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [2.8.0](https://github.com/JiLiZART/bbob/compare/v2.7.0...v2.8.0) (2021-11-28)
|
||||
|
||||
|
||||
|
||||
Generated
+1
-1
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@bbob/react",
|
||||
"version": "2.8.0",
|
||||
"version": "2.8.1",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@bbob/react",
|
||||
"version": "2.8.0",
|
||||
"version": "2.8.1",
|
||||
"description": "A BBCode to React Renderer part of @bbob",
|
||||
"keywords": [
|
||||
"react",
|
||||
@@ -9,16 +9,16 @@
|
||||
"bbob"
|
||||
],
|
||||
"dependencies": {
|
||||
"@bbob/core": "^2.8.0",
|
||||
"@bbob/html": "^2.8.0",
|
||||
"@bbob/plugin-helper": "^2.8.0"
|
||||
"@bbob/core": "^2.8.1",
|
||||
"@bbob/html": "^2.8.1",
|
||||
"@bbob/plugin-helper": "^2.8.1"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"prop-types": "15.x",
|
||||
"react": "18.x"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@bbob/preset-react": "^2.8.0",
|
||||
"@bbob/preset-react": "^2.8.1",
|
||||
"@testing-library/jest-dom": "^5.16.4",
|
||||
"@testing-library/react": "13.x",
|
||||
"react": "18.x",
|
||||
|
||||
@@ -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.
|
||||
|
||||
## [2.8.1](https://github.com/JiLiZART/bbob/compare/v2.8.0...v2.8.1) (2022-05-24)
|
||||
|
||||
**Note:** Version bump only for package @bbob/vue2
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [2.8.0](https://github.com/JiLiZART/bbob/compare/v2.7.0...v2.8.0) (2021-11-28)
|
||||
|
||||
|
||||
|
||||
Generated
+1
-1
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@bbob/vue2",
|
||||
"version": "2.8.0",
|
||||
"version": "2.8.1",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@bbob/vue2",
|
||||
"version": "2.8.0",
|
||||
"version": "2.8.1",
|
||||
"description": "A BBCode to Vue2 Renderer part of @bbob",
|
||||
"keywords": [
|
||||
"vue",
|
||||
@@ -9,15 +9,15 @@
|
||||
"bbob"
|
||||
],
|
||||
"dependencies": {
|
||||
"@bbob/core": "^2.8.0",
|
||||
"@bbob/html": "^2.8.0",
|
||||
"@bbob/plugin-helper": "^2.8.0"
|
||||
"@bbob/core": "^2.8.1",
|
||||
"@bbob/html": "^2.8.1",
|
||||
"@bbob/plugin-helper": "^2.8.1"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"vue": "2.x"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@bbob/preset-vue": "^2.8.0",
|
||||
"@bbob/preset-vue": "^2.8.1",
|
||||
"@testing-library/vue": "5.6.2",
|
||||
"vue": "2.6.12",
|
||||
"vue-template-compiler": "2.6.12"
|
||||
|
||||
Reference in New Issue
Block a user