Skip to content

Commit

Permalink
5.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
MoOx committed Sep 18, 2021
1 parent 3a76951 commit e077974
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 10 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog of `rescript-react-navigation`

## 5.2.0 - 2021-09-18

- ReScript migration [3a76951](https://github.com/rescript-react-native/rescript-react-navigation/commit/3a76951) by [@cem2ran](https://github.com/cem2ran) & [@Freddy03h](https://github.com/Freddy03h)
- Fix `bottomTabBarProps` instead of `bottomTabBarOptions` [3a76951](https://github.com/rescript-react-native/rescript-react-navigation/commit/3a76951) by [@Freddy03h](https://github.com/Freddy03h)
- Add `materialTopTabBarOptions` and `bottomTabBarOptions` creation functions [3a76951](https://github.com/rescript-react-native/rescript-react-navigation/commit/3a76951) by [@Freddy03h](https://github.com/Freddy03h)

## 5.1.3 - 2021-05-03

ReScript
Expand Down
15 changes: 5 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "rescript-react-navigation",
"description": "ReScript bindings for react-navigation.",
"version": "5.1.3",
"version": "5.2.0",
"peerDependencies": {
"@react-navigation/bottom-tabs": "^5.0.0",
"@react-navigation/drawer": "^5.0.0",
Expand All @@ -25,16 +25,15 @@
"files": [
"*.md",
"bsconfig.json",
"src/**/*.re",
"src/**/*.res",
"src/**/*.resi",
"src/**/*.js",
"!src/**/*.bs.js"
],
"scripts": {
"format:most": "prettier --write \"**/*.{md,json,js,css}\"",
"format:re": "find . -name \"*.re\" -or -name \"*.rei\" | grep -v \"node_modules\" | xargs bsrefmt --in-place",
"format": "yarn format:most && yarn format:re",
"format:res": "rescript format -all",
"format": "yarn format:most && yarn format:res",
"re:start": "rescript -w",
"re:build": "rescript",
"re:clean-build": "rescript clean && rescript",
Expand All @@ -56,12 +55,8 @@
"trailingComma": "all"
},
"lint-staged": {
"*.{md,json,js,css}": [
"prettier --write"
],
"*.{re,rei}": [
"bsrefmt --in-place"
]
"*.{md,json,js,css}": "prettier --write",
"*.{res,resi}": "rescript format"
},
"husky": {
"hooks": {
Expand Down

0 comments on commit e077974

Please sign in to comment.