Skip to content

Commit

Permalink
chore(release): publish v5.1.0-beta.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ghaiklor committed Apr 19, 2020
1 parent d5e819d commit e020b77
Show file tree
Hide file tree
Showing 26 changed files with 188 additions and 49 deletions.
39 changes: 36 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +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.

# [5.1.0-beta.0](https://github.com/ghaiklor/kittik/compare/v2.1.2...v5.1.0-beta.0) (2020-04-19)


### Bug Fixes

* 🐛 issue when delay could accept NaN or Infinity values ([1905b0d](https://github.com/ghaiklor/kittik/commit/1905b0d3df5b548c835b59e3301a82c310c0fd78))
* 🐛 issue when process.stdin could be not an interactive ([5055370](https://github.com/ghaiklor/kittik/commit/5055370bb0e0adebaa171c7dcced69b63ddc3bbd))
* 🐛 issue with animating text with print animation ([b55f6bd](https://github.com/ghaiklor/kittik/commit/b55f6bd61d46c6e3aecb60349332e33f4a0edc82))
* 🐛 issue with graceful closing the process ([268dccf](https://github.com/ghaiklor/kittik/commit/268dccf9911ac2c8a7015cae02e9587273f56326))
* 🐛 issue with regular expression for base64 in image shape ([c3f9be2](https://github.com/ghaiklor/kittik/commit/c3f9be2f129b12d4ac7371891b924c54fbc0be1b))


### Features

* 🎸 add a possibility to override cursor when using builder ([43b03aa](https://github.com/ghaiklor/kittik/commit/43b03aa9599e8eb243fda86bcf1c49a90b54e363))
* 🎸 add Builder Pattern to Shape/Animation/Slide ([d30c965](https://github.com/ghaiklor/kittik/commit/d30c965abbe85b961c22d68c525455b27770e29d))
* 🎸 add name to the slides, so you can reference them later ([f45e55c](https://github.com/ghaiklor/kittik/commit/f45e55c63281f8717c0c3b694fc7546d6d8e5fde))
* 🎸 DeckBuilder allows to create the whole decks via API ([fc1eb56](https://github.com/ghaiklor/kittik/commit/fc1eb56da99d0ca498f20d5d47f6430f81077f9e))
* 🎸 implement more user-friendly error handling in slides ([c494c26](https://github.com/ghaiklor/kittik/commit/c494c265f80fcb1800e83bc39fbfa4b58c754e96))
* 🎸 implement passing cursor as an argument to renderer ([594795c](https://github.com/ghaiklor/kittik/commit/594795c7645b377447fa3e2f693dcbf3132d9079))


### BREAKING CHANGES

* 🧨 Any shape constructor now accept not the two argument (cursor, options)
but only the one (options)





# [0.0.0](https://github.com/ghaiklor/kittik/compare/v2.1.2...v0.0.0) (2020-04-19)


Expand Down Expand Up @@ -134,6 +170,3 @@ but only the one (options)
* **shape:** Implements writing text in center of rectangle ([0bbc828](https://github.com/ghaiklor/kittik/commit/0bbc828255b6869820b4f4945c434a4505bf8c5e))
* **slide:** Implements basic slide ([9d1c05b](https://github.com/ghaiklor/kittik/commit/9d1c05bac7fe2c9e557d9b55830a2add2850e630))
* **slide:** Impplements simple Slide wrapper that allows to render the slide ([881b956](https://github.com/ghaiklor/kittik/commit/881b956c6f8672e1f8d291e5b995f7726df1072e))



2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "5.0.0",
"version": "5.1.0-beta.0",
"npmClient": "npm",
"command": {
"publish": {
Expand Down
8 changes: 8 additions & 0 deletions packages/kittik-animation-basic/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Change Log

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [5.1.0-beta.0](https://github.com/ghaiklor/kittik/compare/v2.1.2...v5.1.0-beta.0) (2020-04-19)

**Note:** Version bump only for package kittik-animation-basic
4 changes: 2 additions & 2 deletions packages/kittik-animation-basic/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "kittik-animation-basic",
"version": "0.0.0",
"version": "5.1.0-beta.0",
"description": "Basic class for creating animations in Kittik",
"license": "MIT",
"type": "module",
Expand Down Expand Up @@ -52,7 +52,7 @@
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.0.1",
"jest": "25.3.0",
"kittik-shape-basic": "0.0.0",
"kittik-shape-basic": "5.1.0-beta.0",
"rimraf": "3.0.2",
"terminal-canvas": "3.1.0",
"ts-jest": "25.4.0",
Expand Down
8 changes: 8 additions & 0 deletions packages/kittik-animation-focus/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Change Log

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [5.1.0-beta.0](https://github.com/ghaiklor/kittik/compare/v2.1.2...v5.1.0-beta.0) (2020-04-19)

**Note:** Version bump only for package kittik-animation-focus
8 changes: 4 additions & 4 deletions packages/kittik-animation-focus/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "kittik-animation-focus",
"version": "0.0.0",
"version": "5.1.0-beta.0",
"description": "Provides focus animations in Kittik",
"license": "MIT",
"type": "module",
Expand Down Expand Up @@ -39,7 +39,7 @@
"test": "jest"
},
"dependencies": {
"kittik-animation-basic": "0.0.0"
"kittik-animation-basic": "5.1.0-beta.0"
},
"devDependencies": {
"@types/jest": "25.2.1",
Expand All @@ -55,8 +55,8 @@
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.0.1",
"jest": "25.3.0",
"kittik-shape-basic": "0.0.0",
"kittik-shape-rectangle": "0.0.0",
"kittik-shape-basic": "5.1.0-beta.0",
"kittik-shape-rectangle": "5.1.0-beta.0",
"rimraf": "3.0.2",
"terminal-canvas": "3.1.0",
"ts-jest": "25.4.0",
Expand Down
8 changes: 8 additions & 0 deletions packages/kittik-animation-print/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Change Log

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [5.1.0-beta.0](https://github.com/ghaiklor/kittik/compare/v2.1.2...v5.1.0-beta.0) (2020-04-19)

**Note:** Version bump only for package kittik-animation-print
8 changes: 4 additions & 4 deletions packages/kittik-animation-print/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "kittik-animation-print",
"version": "0.0.0",
"version": "5.1.0-beta.0",
"description": "Provides text printing animation in Kittik",
"license": "MIT",
"type": "module",
Expand Down Expand Up @@ -40,7 +40,7 @@
"test": "jest"
},
"dependencies": {
"kittik-animation-basic": "0.0.0"
"kittik-animation-basic": "5.1.0-beta.0"
},
"devDependencies": {
"@types/jest": "25.2.1",
Expand All @@ -56,8 +56,8 @@
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.0.1",
"jest": "25.3.0",
"kittik-shape-basic": "0.0.0",
"kittik-shape-rectangle": "0.0.0",
"kittik-shape-basic": "5.1.0-beta.0",
"kittik-shape-rectangle": "5.1.0-beta.0",
"rimraf": "3.0.2",
"terminal-canvas": "3.1.0",
"ts-jest": "25.4.0",
Expand Down
8 changes: 8 additions & 0 deletions packages/kittik-animation-slide/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Change Log

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [5.1.0-beta.0](https://github.com/ghaiklor/kittik/compare/v2.1.2...v5.1.0-beta.0) (2020-04-19)

**Note:** Version bump only for package kittik-animation-slide
8 changes: 4 additions & 4 deletions packages/kittik-animation-slide/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "kittik-animation-slide",
"version": "0.0.0",
"version": "5.1.0-beta.0",
"description": "Provides slide animations in Kittik",
"license": "MIT",
"type": "module",
Expand Down Expand Up @@ -39,7 +39,7 @@
"test": "jest"
},
"dependencies": {
"kittik-animation-basic": "0.0.0"
"kittik-animation-basic": "5.1.0-beta.0"
},
"devDependencies": {
"@types/jest": "25.2.1",
Expand All @@ -55,8 +55,8 @@
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.0.1",
"jest": "25.3.0",
"kittik-shape-basic": "0.0.0",
"kittik-shape-rectangle": "0.0.0",
"kittik-shape-basic": "5.1.0-beta.0",
"kittik-shape-rectangle": "5.1.0-beta.0",
"rimraf": "3.0.2",
"terminal-canvas": "3.1.0",
"ts-jest": "25.4.0",
Expand Down
11 changes: 11 additions & 0 deletions packages/kittik-deck/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Change Log

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [5.1.0-beta.0](https://github.com/ghaiklor/kittik/compare/v2.1.2...v5.1.0-beta.0) (2020-04-19)


### Features

* 🎸 DeckBuilder allows to create the whole decks via API ([fc1eb56](https://github.com/ghaiklor/kittik/commit/fc1eb56da99d0ca498f20d5d47f6430f81077f9e))
18 changes: 9 additions & 9 deletions packages/kittik-deck/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "kittik-deck",
"version": "0.0.0",
"version": "5.1.0-beta.0",
"description": "Deck package provides abstraction over collection of slides in Kittik",
"license": "MIT",
"type": "module",
Expand Down Expand Up @@ -38,7 +38,7 @@
"test": "jest"
},
"dependencies": {
"kittik-slide": "0.0.0",
"kittik-slide": "5.1.0-beta.0",
"terminal-canvas": "3.1.0"
},
"devDependencies": {
Expand All @@ -55,13 +55,13 @@
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.0.1",
"jest": "25.3.0",
"kittik-animation-basic": "0.0.0",
"kittik-animation-focus": "0.0.0",
"kittik-animation-print": "0.0.0",
"kittik-animation-slide": "0.0.0",
"kittik-shape-basic": "0.0.0",
"kittik-shape-code": "0.0.0",
"kittik-shape-fig-text": "0.0.0",
"kittik-animation-basic": "5.1.0-beta.0",
"kittik-animation-focus": "5.1.0-beta.0",
"kittik-animation-print": "5.1.0-beta.0",
"kittik-animation-slide": "5.1.0-beta.0",
"kittik-shape-basic": "5.1.0-beta.0",
"kittik-shape-code": "5.1.0-beta.0",
"kittik-shape-fig-text": "5.1.0-beta.0",
"rimraf": "3.0.2",
"ts-jest": "25.4.0",
"typescript": "3.9.0-beta"
Expand Down
8 changes: 8 additions & 0 deletions packages/kittik-shape-basic/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Change Log

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [5.1.0-beta.0](https://github.com/ghaiklor/kittik/compare/v2.1.2...v5.1.0-beta.0) (2020-04-19)

**Note:** Version bump only for package kittik-shape-basic
2 changes: 1 addition & 1 deletion packages/kittik-shape-basic/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "kittik-shape-basic",
"version": "0.0.0",
"version": "5.1.0-beta.0",
"description": "Basic class for creating other shapes in Kittik",
"license": "MIT",
"type": "module",
Expand Down
8 changes: 8 additions & 0 deletions packages/kittik-shape-code/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Change Log

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [5.1.0-beta.0](https://github.com/ghaiklor/kittik/compare/v2.1.2...v5.1.0-beta.0) (2020-04-19)

**Note:** Version bump only for package kittik-shape-code
4 changes: 2 additions & 2 deletions packages/kittik-shape-code/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "kittik-shape-code",
"version": "0.0.0",
"version": "5.1.0-beta.0",
"description": "Code shape for rendering code in Kittik",
"license": "MIT",
"type": "module",
Expand Down Expand Up @@ -42,7 +42,7 @@
},
"dependencies": {
"js-beautify": "1.11.0",
"kittik-shape-basic": "0.0.0",
"kittik-shape-basic": "5.1.0-beta.0",
"redeyed": "2.1.1"
},
"devDependencies": {
Expand Down
8 changes: 8 additions & 0 deletions packages/kittik-shape-fig-text/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Change Log

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [5.1.0-beta.0](https://github.com/ghaiklor/kittik/compare/v2.1.2...v5.1.0-beta.0) (2020-04-19)

**Note:** Version bump only for package kittik-shape-fig-text
4 changes: 2 additions & 2 deletions packages/kittik-shape-fig-text/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "kittik-shape-fig-text",
"version": "0.0.0",
"version": "5.1.0-beta.0",
"description": "Shape for rendering ASCII art in Kittik",
"license": "MIT",
"type": "module",
Expand Down Expand Up @@ -41,7 +41,7 @@
},
"dependencies": {
"figlet": "1.3.0",
"kittik-shape-basic": "0.0.0"
"kittik-shape-basic": "5.1.0-beta.0"
},
"devDependencies": {
"@types/figlet": "1.2.0",
Expand Down
11 changes: 11 additions & 0 deletions packages/kittik-shape-image/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Change Log

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [5.1.0-beta.0](https://github.com/ghaiklor/kittik/compare/v2.1.2...v5.1.0-beta.0) (2020-04-19)


### Bug Fixes

* 🐛 issue with regular expression for base64 in image shape ([c3f9be2](https://github.com/ghaiklor/kittik/commit/c3f9be2f129b12d4ac7371891b924c54fbc0be1b))
4 changes: 2 additions & 2 deletions packages/kittik-shape-image/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "kittik-shape-image",
"version": "0.0.0",
"version": "5.1.0-beta.0",
"description": "Shape for rendering png/jpg/other images in Kittik",
"license": "MIT",
"type": "module",
Expand Down Expand Up @@ -39,7 +39,7 @@
"test": "jest"
},
"dependencies": {
"kittik-shape-basic": "0.0.0"
"kittik-shape-basic": "5.1.0-beta.0"
},
"devDependencies": {
"@types/jest": "25.2.1",
Expand Down
8 changes: 8 additions & 0 deletions packages/kittik-shape-rectangle/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Change Log

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [5.1.0-beta.0](https://github.com/ghaiklor/kittik/compare/v2.1.2...v5.1.0-beta.0) (2020-04-19)

**Note:** Version bump only for package kittik-shape-rectangle
4 changes: 2 additions & 2 deletions packages/kittik-shape-rectangle/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "kittik-shape-rectangle",
"version": "0.0.0",
"version": "5.1.0-beta.0",
"description": "Shape for rendering rectangles in Kittik",
"license": "MIT",
"type": "module",
Expand Down Expand Up @@ -39,7 +39,7 @@
"test": "jest"
},
"dependencies": {
"kittik-shape-basic": "0.0.0"
"kittik-shape-basic": "5.1.0-beta.0"
},
"devDependencies": {
"@types/jest": "25.2.1",
Expand Down
8 changes: 8 additions & 0 deletions packages/kittik-shape-text/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Change Log

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [5.1.0-beta.0](https://github.com/ghaiklor/kittik/compare/v2.1.2...v5.1.0-beta.0) (2020-04-19)

**Note:** Version bump only for package kittik-shape-text
4 changes: 2 additions & 2 deletions packages/kittik-shape-text/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "kittik-shape-text",
"version": "0.0.0",
"version": "5.1.0-beta.0",
"description": "Shape for rendering text in Kittik",
"license": "MIT",
"type": "module",
Expand Down Expand Up @@ -39,7 +39,7 @@
"test": "jest"
},
"dependencies": {
"kittik-shape-basic": "0.0.0"
"kittik-shape-basic": "5.1.0-beta.0"
},
"devDependencies": {
"@types/jest": "25.2.1",
Expand Down
Loading

0 comments on commit e020b77

Please sign in to comment.