Skip to content
This repository has been archived by the owner on Oct 6, 2023. It is now read-only.

Commit

Permalink
v0.8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Akryum committed Dec 12, 2021
1 parent c3540fe commit c5481d6
Show file tree
Hide file tree
Showing 14 changed files with 65 additions and 48 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
## [0.8.3](https://github.com/Akryum/peeky/compare/v0.8.2...v0.8.3) (2021-12-12)


### Bug Fixes

* **ui:** search test field height not aligned ([483bf34](https://github.com/Akryum/peeky/commit/483bf34dafb3d4e9f185b85944f09fffb1b37e66))
* worker setup, closes [#47](https://github.com/Akryum/peeky/issues/47) ([2a92f42](https://github.com/Akryum/peeky/commit/2a92f4229038f49678a117040ee1868cf0b1fb24))


### Features

* allow file without describe(), closes [#41](https://github.com/Akryum/peeky/issues/41) ([c3540fe](https://github.com/Akryum/peeky/commit/c3540fee0499cc0557f0f8309bfdeddc4861e108))
* **ui:** display more context in test view ([e94947c](https://github.com/Akryum/peeky/commit/e94947cc76974a78118f4f3ae26c16716e0a3c1f))
* **ui:** display previous errors, closes [#42](https://github.com/Akryum/peeky/issues/42) ([d4154bb](https://github.com/Akryum/peeky/commit/d4154bbc8d310b07acc6e6ee16b2604839a22345))



## [0.8.2](https://github.com/Akryum/peeky/compare/v0.8.1...v0.8.2) (2021-12-10)


Expand Down
2 changes: 1 addition & 1 deletion docs/guide/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Add scripts to use the CLI in your `package.json` file:
"test": "peeky run"
},
"devDependencies": {
"@peeky/test": "^0.8.2"
"@peeky/test": "^0.8.3"
}
}
```
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "peeky-mono-repo",
"version": "0.8.2",
"version": "0.8.3",
"private": true,
"repository": {
"url": "https://github.com/Akryum/peeky.git",
Expand Down
6 changes: 3 additions & 3 deletions packages/demo/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "peeky-demo",
"version": "0.8.2",
"version": "0.8.3",
"private": true,
"scripts": {
"dev-server": "nodemon ../peeky-server/dist/standalone.js --watch .. --delay 200ms -e js --ignore tests/ --ignore demo/ --nexus-artifacts",
Expand All @@ -9,8 +9,8 @@
"lint": "eslint . --ext js,ts"
},
"devDependencies": {
"@peeky/eslint-plugin": "^0.8.2",
"@peeky/test": "^0.8.2",
"@peeky/eslint-plugin": "^0.8.3",
"@peeky/test": "^0.8.3",
"lodash-es": "^4.17.21",
"nodemon": "^2.0.7",
"ts-node": "^9.1.1",
Expand Down
10 changes: 5 additions & 5 deletions packages/peeky-cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@peeky/cli",
"version": "0.8.2",
"version": "0.8.3",
"description": "Command-line interface for Peeky, the testing framework for curious minds",
"license": "MIT",
"author": {
Expand Down Expand Up @@ -33,10 +33,10 @@
"watch": "tsc -d -w --sourceMap"
},
"dependencies": {
"@peeky/config": "^0.8.2",
"@peeky/eslint-plugin": "^0.8.2",
"@peeky/runner": "^0.8.2",
"@peeky/server": "^0.8.2",
"@peeky/config": "^0.8.3",
"@peeky/eslint-plugin": "^0.8.3",
"@peeky/runner": "^0.8.3",
"@peeky/server": "^0.8.3",
"consola": "^2.15.0",
"lodash": "^4.17.21",
"open": "^7.3.1",
Expand Down
4 changes: 2 additions & 2 deletions packages/peeky-client-dist/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@peeky/client-dist",
"version": "0.8.2",
"version": "0.8.3",
"description": "Frontend production build for Peeky, the testing framework for curious minds",
"license": "MIT",
"author": {
Expand All @@ -18,6 +18,6 @@
"prepublishOnly": "cd ../peeky-client && pnpm run build-client"
},
"devDependencies": {
"@peeky/client": "^0.8.2"
"@peeky/client": "^0.8.3"
}
}
4 changes: 2 additions & 2 deletions packages/peeky-client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@peeky/client",
"version": "0.8.2",
"version": "0.8.3",
"description": "Frontend for Peeky, the testing framework for curious minds",
"license": "MIT",
"author": {
Expand All @@ -21,7 +21,7 @@
},
"dependencies": {
"@apollo/client": "^3.4.7",
"@peeky/utils": "^0.8.2",
"@peeky/utils": "^0.8.3",
"@vue/apollo-composable": "^4.0.0-alpha.12",
"@vue/apollo-util": "^4.0.0-alpha.14",
"@zhuowenli/vue-feather-icons": "^5",
Expand Down
4 changes: 2 additions & 2 deletions packages/peeky-config/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@peeky/config",
"version": "0.8.2",
"version": "0.8.3",
"description": "Configuration utils for Peeky, the testing framework for curious minds",
"license": "MIT",
"author": {
Expand Down Expand Up @@ -29,7 +29,7 @@
"watch": "tsc -d -w --sourceMap"
},
"dependencies": {
"@peeky/utils": "^0.8.2",
"@peeky/utils": "^0.8.3",
"consola": "^2.15.0",
"reactive-fs": "^0.4.1",
"shortid": "^2.2.16",
Expand Down
2 changes: 1 addition & 1 deletion packages/peeky-eslint-plugin/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@peeky/eslint-plugin",
"version": "0.8.2",
"version": "0.8.3",
"description": "Eslint plugin for Peeky, the testing framework for curious minds",
"license": "MIT",
"main": "index.js",
Expand Down
6 changes: 3 additions & 3 deletions packages/peeky-runner/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@peeky/runner",
"version": "0.8.2",
"version": "0.8.3",
"description": "Test runner for Peeky, the testing framework for curious minds",
"license": "MIT",
"author": {
Expand Down Expand Up @@ -31,8 +31,8 @@
},
"dependencies": {
"@akryum/workerpool": "^6.0.5-alpha.2",
"@peeky/config": "^0.8.2",
"@peeky/utils": "^0.8.2",
"@peeky/config": "^0.8.3",
"@peeky/utils": "^0.8.3",
"@types/sinon": "^9.0.10",
"anymatch": "^3.1.2",
"chalk": "^5.0.0",
Expand Down
8 changes: 4 additions & 4 deletions packages/peeky-server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@peeky/server",
"version": "0.8.2",
"version": "0.8.3",
"description": "Server for Peeky, the testing framework for curious minds",
"license": "MIT",
"author": {
Expand Down Expand Up @@ -30,9 +30,9 @@
"watch": "tsc -d -w --sourceMap"
},
"dependencies": {
"@peeky/client-dist": "^0.8.2",
"@peeky/config": "^0.8.2",
"@peeky/runner": "^0.8.2",
"@peeky/client-dist": "^0.8.3",
"@peeky/config": "^0.8.3",
"@peeky/runner": "^0.8.3",
"ansi_up": "^5.1.0",
"apollo-server-express": "^2.19.2",
"chokidar": "^3.5.1",
Expand Down
10 changes: 5 additions & 5 deletions packages/peeky-test/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@peeky/test",
"version": "0.8.2",
"version": "0.8.3",
"description": "Peeky, the testing framework for curious minds",
"license": "MIT",
"author": {
Expand Down Expand Up @@ -33,10 +33,10 @@
"watch": "tsc -d -w --sourceMap"
},
"dependencies": {
"@peeky/cli": "^0.8.2",
"@peeky/config": "^0.8.2",
"@peeky/eslint-plugin": "^0.8.2",
"@peeky/runner": "^0.8.2"
"@peeky/cli": "^0.8.3",
"@peeky/config": "^0.8.3",
"@peeky/eslint-plugin": "^0.8.3",
"@peeky/runner": "^0.8.3"
},
"devDependencies": {
"@types/node": "^14.14.21",
Expand Down
2 changes: 1 addition & 1 deletion packages/peeky-utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@peeky/utils",
"version": "0.8.2",
"version": "0.8.3",
"description": "Common utilities for Peeky, the testing framework for curious minds",
"license": "MIT",
"author": {
Expand Down
36 changes: 18 additions & 18 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit c5481d6

Please sign in to comment.