File tree Expand file tree Collapse file tree 3 files changed +15
-13
lines changed Expand file tree Collapse file tree 3 files changed +15
-13
lines changed Original file line number Diff line number Diff line change
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
+
1
11
## [ 14.0.3] ( https://github.com/algolia/react-element-to-jsx-string/compare/v14.0.2...v14.0.3 ) (2019-07-19)
2
12
3
13
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " react-element-to-jsx-string" ,
3
- "version" : " 14.0.3 " ,
3
+ "version" : " 14.1.0 " ,
4
4
"description" : " Turn a ReactElement into the corresponding JSX string." ,
5
5
"main" : " dist/cjs/index.js" ,
6
6
"module" : " dist/esm/index.js" ,
23
23
"smoke" : " node tests/smoke/run"
24
24
},
25
25
"lint-staged" : {
26
- "*.js" : [" prettier --write \" **/*.{js,json}\" " , " git add" ]
26
+ "*.js" : [
27
+ " prettier --write \" **/*.{js,json}\" " ,
28
+ " git add"
29
+ ]
27
30
},
28
31
"author" : {
29
32
"name" : " Algolia, Inc." ,
Original file line number Diff line number Diff line change 2
2
3
3
set -e # exit when error
4
4
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
-
11
5
currentBranch=` git rev-parse --abbrev-ref HEAD`
12
6
if [ $currentBranch != ' master' ]; then
13
7
printf " Release: You must be on master\n"
14
8
exit 1
15
9
fi
16
10
17
- if [[ -n $( git status --porcelain) ]]; then
18
- printf " Release: Working tree is not clean (git status)\n"
19
- exit 1
20
- fi
21
-
22
11
if [[ $# -eq 0 ]] ; then
23
12
printf " Release: use ` ` yarn release [major|minor|patch|x.x.x]` ` \n"
24
13
exit 1
You can’t perform that action at this time.
0 commit comments