Skip to content

Commit 2e5cdba

Browse files
committedJan 14, 2020
chore(deps): bumped versions of all dependencies
1 parent 155257e commit 2e5cdba

File tree

3 files changed

+2701
-2222
lines changed

3 files changed

+2701
-2222
lines changed
 

‎package.json

+12-12
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
},
2626
"dependencies": {
2727
"gotrue-js": "^0.9.25",
28-
"tsdx": "^0.6.0"
28+
"tsdx": "^0.12.3"
2929
},
3030
"peerDependencies": {
3131
"react": "^15.0.0 || ^16.0.0",
@@ -43,18 +43,18 @@
4343
"trailingComma": "es5"
4444
},
4545
"devDependencies": {
46-
"@svgr/rollup": "^4.2.0",
47-
"@types/jest": "^23.1.5",
48-
"@types/react": "^16.7.13",
49-
"@types/react-dom": "^16.0.11",
50-
"auto-changelog": "^1.13.0",
46+
"@svgr/rollup": "^5.0.1",
47+
"@types/jest": "^24.0.25",
48+
"@types/react": "^16.9.17",
49+
"@types/react-dom": "^16.9.4",
50+
"auto-changelog": "^1.16.2",
5151
"gh-release": "^3.5.0",
52-
"husky": "^2.3.0",
53-
"prettier": "^1.17.1",
54-
"pretty-quick": "^1.11.0",
55-
"react": "^16.8.6",
56-
"react-dom": "^16.8.6",
57-
"typescript": "^3.5.1"
52+
"husky": "^4.0.9",
53+
"prettier": "^1.19.1",
54+
"pretty-quick": "^2.0.1",
55+
"react": "^16.12.0",
56+
"react-dom": "^16.12.0",
57+
"typescript": "^3.7.4"
5858
},
5959
"files": [
6060
"dist"

‎src/index.tsx

+6-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
import React from 'react';
22

3-
import GoTrue, { User, Settings } from 'gotrue-js';
3+
import GoTrue, {
4+
User as GoTrueUser,
5+
Settings as GoTrueSettings,
6+
} from 'gotrue-js';
47
import { runRoutes } from './runRoutes';
58

69
type authChangeParam = (user?: User) => string | void;
710

8-
export type Settings = Settings;
9-
export type User = User;
11+
export type Settings = GoTrueSettings;
12+
export type User = GoTrueUser;
1013

1114
const defaultSettings = {
1215
autoconfirm: false,

‎yarn.lock

+2,683-2,207
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)
Please sign in to comment.