Skip to content

Commit bd7b75b

Browse files
committed
14.1.0
1 parent b636836 commit bd7b75b

File tree

3 files changed

+15
-13
lines changed

3 files changed

+15
-13
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
# [14.1.0](https://github.com/algolia/react-element-to-jsx-string/compare/v14.0.3...v14.1.0) (2019-09-15)
2+
3+
4+
### Bug Fixes
5+
6+
* **deps:** Remove dependency stringify-object ([6dc6d8d](https://github.com/algolia/react-element-to-jsx-string/commit/6dc6d8d))
7+
* **deps:** Replace dependency stringify-object with pretty-print-object ([940a413](https://github.com/algolia/react-element-to-jsx-string/commit/940a413))
8+
9+
10+
111
## [14.0.3](https://github.com/algolia/react-element-to-jsx-string/compare/v14.0.2...v14.0.3) (2019-07-19)
212

313

package.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-element-to-jsx-string",
3-
"version": "14.0.3",
3+
"version": "14.1.0",
44
"description": "Turn a ReactElement into the corresponding JSX string.",
55
"main": "dist/cjs/index.js",
66
"module": "dist/esm/index.js",
@@ -23,7 +23,10 @@
2323
"smoke": "node tests/smoke/run"
2424
},
2525
"lint-staged": {
26-
"*.js": ["prettier --write \"**/*.{js,json}\"", "git add"]
26+
"*.js": [
27+
"prettier --write \"**/*.{js,json}\"",
28+
"git add"
29+
]
2730
},
2831
"author": {
2932
"name": "Algolia, Inc.",

release.sh

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,23 +2,12 @@
22

33
set -e # exit when error
44

5-
if ! npm owner ls | grep -q "$(npm whoami)"
6-
then
7-
printf "Release: Not an owner of the npm repo, ask for it\n"
8-
exit 1
9-
fi
10-
115
currentBranch=`git rev-parse --abbrev-ref HEAD`
126
if [ $currentBranch != 'master' ]; then
137
printf "Release: You must be on master\n"
148
exit 1
159
fi
1610

17-
if [[ -n $(git status --porcelain) ]]; then
18-
printf "Release: Working tree is not clean (git status)\n"
19-
exit 1
20-
fi
21-
2211
if [[ $# -eq 0 ]] ; then
2312
printf "Release: use ``yarn release [major|minor|patch|x.x.x]``\n"
2413
exit 1

0 commit comments

Comments
 (0)