Skip to content

Commit

Permalink
Fixing documentation broken link
Browse files Browse the repository at this point in the history
  • Loading branch information
Antonio Russo committed Mar 6, 2021
1 parent e3fe58a commit cf6aec3
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 44 deletions.
1 change: 1 addition & 0 deletions .mocharc.json
Expand Up @@ -2,6 +2,7 @@
"require": [
"jsdom-global/register",
"@babel/register",
"regenerator-runtime/runtime",
"mock-local-storage",
"./test/_setup.js"
]
Expand Down
11 changes: 11 additions & 0 deletions CHANGELOG.md
Expand Up @@ -634,3 +634,14 @@ online
### Added

- `useRenderInfo` hook and tests


## [0.31.1] - 2020-10-09

### Added

- Support for SSR in `isAPISupport`

### Fixed

- Documentation link
13 changes: 0 additions & 13 deletions docs/styleguidist/webpack.config.js
Expand Up @@ -2,24 +2,11 @@ const path = require('path');

// local constants
const srcPath = path.resolve(__dirname, '../..', 'src');
const outPath = path.resolve(__dirname, '../..','gitpages');

module.exports = {
resolve: {
extensions: ['.js'],
alias: { 'beautiful-react-hooks': srcPath },
},
devtool: 'inline-source-map',
output: {
path: outPath,
filename: 'beautiful-react-hooks.doc.js',
},
devServer: {
open: true,
hot: false,
liveReload: true,
watchContentBase: true,
},
module: {
rules: [
{
Expand Down
63 changes: 32 additions & 31 deletions package.json
@@ -1,6 +1,6 @@
{
"name": "beautiful-react-hooks",
"version": "0.31.0",
"version": "0.31.1",
"description": "A collection of beautiful (and hopefully useful) React hooks to speed-up your components and hooks development",
"main": "index.js",
"module": "esm/index.js",
Expand Down Expand Up @@ -35,50 +35,51 @@
"lodash.throttle": "^4.1.1"
},
"peerDependencies": {
"react": ">=17.0.0",
"react-dom": ">=17.0.0"
"react": ">=17.0.1",
"react-dom": ">=17.0.1"
},
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/core": "^7.13.8",
"@babel/polyfill": "^7.10.4",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"@babel/register": "^7.10.5",
"@rollup/plugin-node-resolve": "9.0.0",
"@testing-library/react": "11.1.0",
"@testing-library/react-hooks": "^3.4.1",
"@babel/preset-env": "^7.13.9",
"@babel/preset-react": "^7.12.13",
"@babel/register": "^7.13.8",
"@rollup/plugin-node-resolve": "11.2.0",
"@testing-library/react": "11.2.5",
"@testing-library/react-hooks": "^5.1.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"babel-loader": "^8.2.2",
"babel-plugin-istanbul": "^6.0.0",
"babel-plugin-transform-require-ignore": "^0.1.1",
"beautiful-react-ui": "^0.57.0",
"chai": "^4.2.0",
"css-loader": "^5.0.0",
"eslint": "^7.7.0",
"eslint-config-airbnb": "^18.2.0",
"beautiful-react-ui": "^0.57.1",
"chai": "^4.3.3",
"css-loader": "^5.1.1",
"eslint": "^7.21.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-chai-expect": "^2.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.0.8",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"glob": "^7.1.6",
"husky": "^4.2.5",
"jsdoc-to-markdown": "^6.0.1",
"husky": "^5.1.3",
"jsdoc-to-markdown": "^7.0.0",
"jsdom": "^16.4.0",
"jsdom-global": "^3.0.2",
"mocha": "8.2.0",
"mock-local-storage": "1.1.15",
"mocha": "8.3.1",
"mock-local-storage": "1.1.17",
"nyc": "^15.1.0",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"react-styleguidist": "^11.0.8",
"react-test-renderer": "^16.13.1",
"rollup": "2.33.0",
"react-styleguidist": "^11.1.5",
"react-test-renderer": "^17.0.1",
"regenerator-runtime": "0.13.7",
"rollup": "2.40.0",
"rollup-plugin-babel": "4.4.0",
"rxjs": "6.6.3",
"sinon": "^9.0.3",
"rxjs": "6.6.6",
"sinon": "^9.2.4",
"style-loader": "2.0.0",
"url-loader": "^4.1.0",
"webpack": "^5.1.3"
"url-loader": "^4.1.1",
"webpack": "^5.24.3"
}
}

0 comments on commit cf6aec3

Please sign in to comment.