Skip to content
This repository was archived by the owner on Apr 26, 2024. It is now read-only.

Commit c9258bb

Browse files
author
Daniel Sanchez
authored
Set v0.7.0 (#141)
* Bump dependencies: - Babel - Storybook - Eslint and prettier
1 parent f7b8acb commit c9258bb

File tree

4 files changed

+1601
-3124
lines changed

4 files changed

+1601
-3124
lines changed

.eslintrc

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"extends": [
44
"plugin:react/recommended",
55
"plugin:@typescript-eslint/recommended",
6-
"prettier/@typescript-eslint",
6+
"prettier",
77
"plugin:prettier/recommended"
88
],
99
"plugins": ["react-hooks"],
@@ -18,5 +18,10 @@
1818
"react-hooks/rules-of-hooks": "error",
1919
"react-hooks/exhaustive-deps": "warn",
2020
"react/prop-types": "off"
21+
},
22+
"settings": {
23+
"react": {
24+
"version": "detect"
25+
}
2126
}
2227
}

package.json

Lines changed: 24 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@gnosis.pm/safe-react-components",
3-
"version": "0.6.0",
3+
"version": "0.7.0",
44
"description": "Gnosis UI components",
55
"main": "dist/index.min.js",
66
"typings": "dist/index.d.ts",
@@ -28,48 +28,45 @@
2828
"react-media": "^1.10.0"
2929
},
3030
"devDependencies": {
31-
"@babel/core": "^7.13.15",
32-
"@babel/preset-env": "^7.13.15",
33-
"@babel/preset-react": "^7.13.13",
34-
"@babel/preset-typescript": "^7.13.0",
31+
"@babel/core": "^7.14.0",
32+
"@babel/preset-env": "^7.14.0",
33+
"@babel/preset-react": "^7.14.0",
34+
"@babel/preset-typescript": "^7.14.0",
3535
"@material-ui/core": "^4.11.2",
36-
"@storybook/addon-actions": "^6.1.0",
37-
"@storybook/addon-docs": "^6.1.0",
38-
"@storybook/addon-links": "^6.1.0",
39-
"@storybook/addon-storyshots": "^6.2.7",
40-
"@storybook/addons": "^6.1.0",
41-
"@storybook/react": "^6.1.0",
36+
"@storybook/addon-actions": "^6.3.0",
37+
"@storybook/addon-docs": "^6.3.0",
38+
"@storybook/addon-links": "^6.3.0",
39+
"@storybook/addon-storyshots": "^6.3.0",
40+
"@storybook/addons": "^6.3.0",
41+
"@storybook/react": "^6.3.0",
4242
"@testing-library/jest-dom": "^5.11.5",
43-
"@testing-library/react": "^11.1.0",
43+
"@testing-library/react": "^11.2.7",
4444
"@testing-library/user-event": "^12.2.0",
4545
"@types/classnames": "^2.2.11",
4646
"@types/jest": "^26.0.0",
47-
"@types/material-ui": "^0.21.8",
47+
"@types/material-ui": "^0.21.9",
4848
"@types/node": "^14.14.0",
4949
"@types/react": "^16.9.55",
5050
"@types/react-dom": "^16.9.0",
51-
"@types/styled-components": "^5.1.0",
52-
"@typescript-eslint/eslint-plugin": "^4.6.1",
53-
"@typescript-eslint/parser": "^4.6.1",
51+
"@types/styled-components": "^5.1.11",
52+
"@typescript-eslint/eslint-plugin": "^4.28.4",
53+
"@typescript-eslint/parser": "^4.28.4",
5454
"awesome-typescript-loader": "^5.2.1",
55-
"babel-eslint": "^10.0.3",
56-
"babel-jest": "^26.6.3",
57-
"babel-loader": "^8.1.0",
5855
"copy-webpack-plugin": "^6.3.0",
59-
"eslint": "^7.12.0",
60-
"eslint-config-prettier": "^6.15.0",
61-
"eslint-plugin-prettier": "^3.1.0",
62-
"eslint-plugin-react": "^7.21.5",
56+
"eslint": "^7.31.0",
57+
"eslint-config-prettier": "^8.3.0",
58+
"eslint-plugin-prettier": "^3.4.0",
59+
"eslint-plugin-react": "^7.24.0",
6360
"eslint-plugin-react-hooks": "^4.2.0",
6461
"ethereum-blockies-base64": "^1.0.2",
6562
"file-loader": "^6.2.0",
6663
"identity-obj-proxy": "^3.0.0",
6764
"jest": "^26.6.3",
68-
"jest-styled-components": "^7.0.4",
69-
"prettier": "^2.1.0",
70-
"react": "^16.13.0",
65+
"jest-styled-components": "^7.0.5",
66+
"prettier": "^2.3.2",
67+
"react": "^16.14.0",
7168
"react-docgen-typescript-loader": "^3.7.2",
72-
"react-dom": "^16.13.0",
69+
"react-dom": "^16.14.0",
7370
"rimraf": "^3.0.2",
7471
"styled-components": "^5.2.1",
7572
"typescript": "^4.0.5",
@@ -78,9 +75,6 @@
7875
"webpack-cli": "^3.3.10",
7976
"webpack-node-externals": "^2.5.2"
8077
},
81-
"resolutions": {
82-
"@babel/core": "^7.12.0"
83-
},
8478
"peerDependencies": {
8579
"@material-ui/core": "4.X.X",
8680
"react": "16.x.x || 17.x.x",

tsconfig.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,8 @@
1818
"noEmit": true,
1919
"jsx": "react"
2020
},
21-
"include": ["src"]
21+
"include": ["src"],
22+
"exclude": [
23+
"node_modules"
24+
]
2225
}

0 commit comments

Comments
 (0)