Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release/0.0.9 #15

Merged
merged 4 commits into from
Apr 11, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file. Dates are d

Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).

#### [v0.0.9](https://github.com/clement-faure/mui-rhf/compare/v0.0.8...v0.0.9)

> 11 April 2021

- Release/0.0.8 [`#14`](https://github.com/clement-faure/mui-rhf/pull/14)
- Bump version [`295a15e`](https://github.com/clement-faure/mui-rhf/commit/295a15e12327032f6498b60b2c29a60d7541ef3c)
- Fix coverage:unit script [`fb28e5d`](https://github.com/clement-faure/mui-rhf/commit/fb28e5dd50a9adfc40cf4f09288aeee8bdfdd5b6)

#### [v0.0.8](https://github.com/clement-faure/mui-rhf/compare/v0.0.7...v0.0.8)

> 11 April 2021
Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mui-rhf",
"version": "0.0.8",
"version": "0.0.9",
"description": "Form generator based on Material UI and React Hook Form",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand All @@ -22,7 +22,8 @@
"lint": "yarn eslint . --ext .js,.jsx,.ts,.tsx",
"test:unit:dev": "jest --watch",
"test:unit": "jest",
"coverage:unit": "jest --coverage; open coverage/lcov-report/index.html",
"coverage:unit": "jest --coverage",
"coverage:unit:open": "yarn coverage:unit; open coverage/lcov-report/index.html",
"build": "rm -rf ./dist && cross-env NODE_ENV=production tsc --project tsconfig.json && tscpaths -p tsconfig.json -s ./src -o ./dist",
"start": "tsc -w"
},
Expand Down