Skip to content

Commit

Permalink
1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisrzhou committed Sep 28, 2019
1 parent bb4182d commit 948f1a3
Show file tree
Hide file tree
Showing 4 changed files with 493 additions and 534 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.1.1](https://github.com/chrisrzhou/react-wordcloud/compare/v1.1.0...v1.1.1) (2019-09-27)

- Update dependencies and fix `eval` error in `seedrandom` package ([link](https://github.com/davidbau/seedrandom/issues/64)).

## [1.1.0](https://github.com/chrisrzhou/react-wordcloud/compare/v1.0.8...v1.1.0) (2019-09-08)

- Update dev configs + dependencies. Check with `yarn audit`.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Simple React + D3 wordcloud component with powerful features. Uses the [`d3-clou
yarn add react-wordcloud
```

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

## Examples

Expand Down
33 changes: 17 additions & 16 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-wordcloud",
"version": "1.1.0",
"version": "1.1.1",
"description": "Simple React + D3 wordcloud component with powerful features.",
"main": "dist/index.js",
"module": "dist/index.module.js",
Expand All @@ -26,7 +26,8 @@
"build:docs": "yarn docz build",
"clean": "rm -rf dist .docz",
"dev": "yarn docz dev",
"lint": "yarn tsc && eslint --ext .js,.jsx,.ts,.tsx --fix src docs",
"lint": "yarn tsc && eslint --ext .js,.jsx,.ts,.tsx src docs",
"lint:fix": "yarn lint --fix",
"prepare": "yarn clean && yarn build",
"size": "bundlesize",
"unused": "yarn no-unused-export src/*.ts* --exclude src/*.d.ts"
Expand All @@ -46,32 +47,32 @@
"d3-selection": "^1.4.0",
"d3-transition": "^1.2.0",
"resize-observer-polyfill": "^1.5.1",
"seedrandom": "^3.0.3",
"seedrandom": "^3.0.5",
"tippy.js": "^4.3.5"
},
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"@babel/core": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.6.0",
"@types/react": "^16.9.2",
"@typescript-eslint/eslint-plugin": "^2.2.0",
"@typescript-eslint/parser": "^2.2.0",
"@types/react": "^16.9.3",
"@typescript-eslint/eslint-plugin": "^2.3.1",
"@typescript-eslint/parser": "^2.3.1",
"bundlesize": "^0.18.0",
"docz": "^1.3.2",
"docz-theme-default": "^1.2.0",
"eslint": "^6.3.0",
"eslint": "^6.4.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^2.0.1",
"eslint-plugin-react-hooks": "^2.1.0",
"no-unused-export": "^1.9.0",
"prettier": "^1.15.3",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"rollup": "^1.21.2",
"react": "^16.10.0",
"react-dom": "^16.10.0",
"rollup": "^1.21.4",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-typescript2": "^0.24.1",
"rollup-plugin-typescript2": "^0.24.3",
"tslib": "1.10.0",
"typescript": "^3.6.3"
},
Expand All @@ -82,7 +83,7 @@
}
],
"peerDependencies": {
"react": "^16.8.3"
"react": "^16.10.0"
},
"resolutions": {
"d3-selection": "1.4.0"
Expand Down
Loading

0 comments on commit 948f1a3

Please sign in to comment.