Skip to content

Commit 948f1a3

Browse files
committed
1.1.1
1 parent bb4182d commit 948f1a3

File tree

4 files changed

+493
-534
lines changed

4 files changed

+493
-534
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [1.1.1](https://github.com/chrisrzhou/react-wordcloud/compare/v1.1.0...v1.1.1) (2019-09-27)
7+
8+
- Update dependencies and fix `eval` error in `seedrandom` package ([link](https://github.com/davidbau/seedrandom/issues/64)).
9+
610
## [1.1.0](https://github.com/chrisrzhou/react-wordcloud/compare/v1.0.8...v1.1.0) (2019-09-08)
711

812
- Update dev configs + dependencies. Check with `yarn audit`.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Simple React + D3 wordcloud component with powerful features. Uses the [`d3-clou
1010
yarn add react-wordcloud
1111
```
1212

13-
Note that `react-wordcloud` requires `react^16.8.3` as a peer dependency.
13+
Note that `react-wordcloud` requires `react^16.10.0` as a peer dependency.
1414

1515
## Examples
1616

package.json

+17-16
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-wordcloud",
3-
"version": "1.1.0",
3+
"version": "1.1.1",
44
"description": "Simple React + D3 wordcloud component with powerful features.",
55
"main": "dist/index.js",
66
"module": "dist/index.module.js",
@@ -26,7 +26,8 @@
2626
"build:docs": "yarn docz build",
2727
"clean": "rm -rf dist .docz",
2828
"dev": "yarn docz dev",
29-
"lint": "yarn tsc && eslint --ext .js,.jsx,.ts,.tsx --fix src docs",
29+
"lint": "yarn tsc && eslint --ext .js,.jsx,.ts,.tsx src docs",
30+
"lint:fix": "yarn lint --fix",
3031
"prepare": "yarn clean && yarn build",
3132
"size": "bundlesize",
3233
"unused": "yarn no-unused-export src/*.ts* --exclude src/*.d.ts"
@@ -46,32 +47,32 @@
4647
"d3-selection": "^1.4.0",
4748
"d3-transition": "^1.2.0",
4849
"resize-observer-polyfill": "^1.5.1",
49-
"seedrandom": "^3.0.3",
50+
"seedrandom": "^3.0.5",
5051
"tippy.js": "^4.3.5"
5152
},
5253
"devDependencies": {
53-
"@babel/core": "^7.6.0",
54-
"@babel/preset-env": "^7.6.0",
54+
"@babel/core": "^7.6.2",
55+
"@babel/preset-env": "^7.6.2",
5556
"@babel/preset-react": "^7.0.0",
5657
"@babel/preset-typescript": "^7.6.0",
57-
"@types/react": "^16.9.2",
58-
"@typescript-eslint/eslint-plugin": "^2.2.0",
59-
"@typescript-eslint/parser": "^2.2.0",
58+
"@types/react": "^16.9.3",
59+
"@typescript-eslint/eslint-plugin": "^2.3.1",
60+
"@typescript-eslint/parser": "^2.3.1",
6061
"bundlesize": "^0.18.0",
6162
"docz": "^1.3.2",
6263
"docz-theme-default": "^1.2.0",
63-
"eslint": "^6.3.0",
64+
"eslint": "^6.4.0",
6465
"eslint-config-prettier": "^6.3.0",
65-
"eslint-plugin-prettier": "^3.0.0",
66+
"eslint-plugin-prettier": "^3.1.1",
6667
"eslint-plugin-react": "^7.14.3",
67-
"eslint-plugin-react-hooks": "^2.0.1",
68+
"eslint-plugin-react-hooks": "^2.1.0",
6869
"no-unused-export": "^1.9.0",
6970
"prettier": "^1.15.3",
70-
"react": "^16.9.0",
71-
"react-dom": "^16.9.0",
72-
"rollup": "^1.21.2",
71+
"react": "^16.10.0",
72+
"react-dom": "^16.10.0",
73+
"rollup": "^1.21.4",
7374
"rollup-plugin-babel": "^4.3.3",
74-
"rollup-plugin-typescript2": "^0.24.1",
75+
"rollup-plugin-typescript2": "^0.24.3",
7576
"tslib": "1.10.0",
7677
"typescript": "^3.6.3"
7778
},
@@ -82,7 +83,7 @@
8283
}
8384
],
8485
"peerDependencies": {
85-
"react": "^16.8.3"
86+
"react": "^16.10.0"
8687
},
8788
"resolutions": {
8889
"d3-selection": "1.4.0"

0 commit comments

Comments
 (0)