Skip to content

Commit 16d1656

Browse files
Olavo ParnoOlavo Parno
Olavo Parno
authored and
Olavo Parno
committed
chore(release): 1.1.7
1 parent d0a5ef5 commit 16d1656

File tree

4 files changed

+51
-40
lines changed

4 files changed

+51
-40
lines changed

Diff for: CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
### [1.1.7](https://github.com/olavoparno/react-use-downloader/compare/v1.1.6...v1.1.7) (2022-01-26)
6+
7+
8+
### Bug Fixes
9+
10+
* upgrade @material-ui/core from 4.12.1 to 4.12.2 ([1d15d6b](https://github.com/olavoparno/react-use-downloader/commit/1d15d6ba80ec216195b627d60d0a22728a9e6bbe))
11+
* upgrade @material-ui/core from 4.12.2 to 4.12.3 ([4f2add6](https://github.com/olavoparno/react-use-downloader/commit/4f2add6958aa9b48f33901a2fd28295df63eb1e0))
12+
513
### [1.1.6](https://github.com/olavoparno/react-use-downloader/compare/v1.1.4...v1.1.6) (2021-08-11)
614

715

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
| Statements | Branches | Functions | Lines |
1212
| --------------------------------------------------------------------- | ------------------------------------------------------------------- | -------------------------------------------------------------------- | ---------------------------------------------------------------- |
13-
| ![Statements](https://img.shields.io/badge/statements-88.35%25-yellow.svg) | ![Branches](https://img.shields.io/badge/branches-73.53%25-red.svg) | ![Functions](https://img.shields.io/badge/functions-81.25%25-yellow.svg) | ![Lines](https://img.shields.io/badge/lines-88.17%25-yellow.svg) |
13+
| ![Statements](https://img.shields.io/badge/statements-87.96%25-yellow.svg?style=flat&logo=jest) | ![Branches](https://img.shields.io/badge/branches-72.97%25-red.svg?style=flat&logo=jest) | ![Functions](https://img.shields.io/badge/functions-81.81%25-yellow.svg?style=flat&logo=jest) | ![Lines](https://img.shields.io/badge/lines-88.65%25-yellow.svg?style=flat&logo=jest) |
1414

1515
## Table of Contents
1616

Diff for: package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: package.json

+41-38
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-use-downloader",
3-
"version": "1.1.6",
3+
"version": "1.1.7",
44
"description": "Creates a download handler function and gives progress information",
55
"author": "Olavo Parno",
66
"license": "MIT",
@@ -22,71 +22,74 @@
2222
"dist/"
2323
],
2424
"lint-staged": {
25-
"*.{js,ts,tsx}": [
26-
"eslint --fix src/**/*.{js,jsx,ts,tsx}"
25+
"*.ts": [
26+
"eslint --fix src/**/*.ts"
2727
]
2828
},
2929
"scripts": {
30-
"test": "react-scripts test --env=jsdom",
30+
"test": "react-scripts test",
3131
"test:coverage": "npm run test -- --coverage --watchAll=false",
3232
"prebuild": "rm -rf dist",
3333
"build": "rollup -c && tsc -d --emitDeclarationOnly --noEmit false --declarationDir dist",
3434
"start": "rollup -c -w",
35-
"prepare": "husky install && npm run build",
35+
"prepare": "husky install",
3636
"predeploy": "cd example && npm install && npm run build",
3737
"deploy": "gh-pages -d example/build",
38-
"format": "prettier --write src/**/*.{js,jsx,ts,tsx}",
39-
"lint": "eslint --fix src/**/*.{js,jsx,ts,tsx}",
38+
"format": "prettier --write src/**/*.ts",
39+
"lint": "eslint --fix src/**/*.ts",
4040
"release": "standard-version",
41-
"make-badges": "istanbul-badges-readme"
41+
"make-badges": "istanbul-badges-readme --logo=jest"
4242
},
4343
"jest": {
4444
"coverageReporters": [
4545
"lcov",
4646
"json-summary"
4747
]
4848
},
49+
"dependencies": {
50+
"react": "^17.0.2"
51+
},
4952
"peerDependencies": {
5053
"react": "^17.0.2"
5154
},
5255
"devDependencies": {
53-
"@babel/core": "^7.14.6",
54-
"@babel/runtime": "^7.14.6",
56+
"@babel/core": "^7.16.12",
57+
"@babel/runtime": "^7.16.7",
5558
"@rollup/plugin-babel": "^5.3.0",
56-
"@rollup/plugin-commonjs": "^19.0.0",
57-
"@rollup/plugin-node-resolve": "^13.0.0",
58-
"@rollup/plugin-typescript": "^8.2.1",
59-
"@rollup/plugin-url": "^6.0.0",
60-
"@testing-library/react-hooks": "^7.0.1",
61-
"@types/jest": "^26.0.24",
62-
"@types/node-fetch": "^2.5.11",
63-
"@types/react": "^17.0.14",
64-
"@typescript-eslint/eslint-plugin": "^4.28.3",
65-
"@typescript-eslint/parser": "^4.28.3",
59+
"@rollup/plugin-commonjs": "^21.0.1",
60+
"@rollup/plugin-node-resolve": "^13.1.3",
61+
"@rollup/plugin-typescript": "^8.3.0",
62+
"@rollup/plugin-url": "^6.1.0",
63+
"@testing-library/react-hooks": "^7.0.2",
64+
"@types/jest": "^27.4.0",
65+
"@types/node-fetch": "^3.0.3",
66+
"@types/react": "^17.0.38",
67+
"@typescript-eslint/eslint-plugin": "^5.10.1",
68+
"@typescript-eslint/parser": "^5.10.1",
6669
"cross-env": "^7.0.3",
67-
"eslint": "^7.30.0",
68-
"eslint-config-airbnb": "^18.2.1",
69-
"eslint-config-airbnb-typescript-prettier": "^4.2.0",
70+
"eslint": "^8.7.0",
71+
"eslint-config-airbnb": "^19.0.4",
72+
"eslint-config-airbnb-typescript-prettier": "^5.0.0",
7073
"eslint-config-prettier": "^8.3.0",
71-
"eslint-plugin-import": "^2.23.4",
72-
"eslint-plugin-jsx-a11y": "^6.4.1",
73-
"eslint-plugin-prettier": "^3.4.0",
74-
"eslint-plugin-react": "^7.24.0",
75-
"eslint-plugin-react-hooks": "^4.2.0",
74+
"eslint-plugin-import": "^2.25.4",
75+
"eslint-plugin-jsx-a11y": "^6.5.1",
76+
"eslint-plugin-prettier": "^4.0.0",
77+
"eslint-plugin-react": "^7.28.0",
78+
"eslint-plugin-react-hooks": "^4.3.0",
7679
"gh-pages": "^3.2.3",
77-
"husky": "^7.0.1",
78-
"istanbul-badges-readme": "^1.4.0",
79-
"node-fetch": "^2.6.1",
80-
"prettier": "^2.3.2",
80+
"husky": "^7.0.4",
81+
"istanbul-badges-readme": "^1.8.1",
82+
"node-fetch": "^3.2.0",
83+
"prettier": "^2.5.1",
8184
"react": "^17.0.2",
82-
"react-scripts": "^4.0.3",
85+
"react-scripts": "^5.0.0",
8386
"react-test-renderer": "^17.0.2",
84-
"rollup": "^2.53.1",
87+
"rollup": "^2.66.1",
8588
"rollup-plugin-peer-deps-external": "^2.2.4",
8689
"rollup-plugin-terser": "^7.0.2",
87-
"standard-version": "^9.3.0",
88-
"tslib": "^2.3.0",
89-
"typescript": "^4.3.5",
90-
"web-streams-polyfill": "^3.0.3"
90+
"standard-version": "^9.3.2",
91+
"tslib": "^2.3.1",
92+
"typescript": "^4.5.5",
93+
"web-streams-polyfill": "^3.2.0"
9194
}
9295
}

0 commit comments

Comments
 (0)