Skip to content

Commit 9f9cb91

Browse files
authored
Merge pull request #22 from jk-gan/develop
Release 1.3.0
2 parents 005c697 + e7a75cb commit 9f9cb91

File tree

3 files changed

+18
-15
lines changed

3 files changed

+18
-15
lines changed

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "redux-flipper",
3-
"version": "1.2.0",
3+
"version": "1.3.0",
44
"description": "Redux middleware for flipper",
55
"main": "lib/index.js",
66
"types": "lib/index.d.ts",
@@ -42,9 +42,9 @@
4242
"typescript": "^3.8.3"
4343
},
4444
"dependencies": {
45-
"@types/node": "^14.0.5",
45+
"@types/node": "^14.0.22",
4646
"cycle": "^1.0.3",
47-
"dayjs": "^1.8.24",
48-
"react-native-flipper": "^0.37.0"
47+
"dayjs": "^1.8.29",
48+
"react-native-flipper": "^0.49.0"
4949
}
5050
}

src/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import * as dayjs from 'dayjs';
33

44
type Configuration = {
55
resolveCyclic: boolean;
6-
actionsBlacklist: Array<String>;
6+
actionsBlacklist: Array<string>;
77
};
88

99
const defaultConfig: Configuration = { resolveCyclic: false, actionsBlacklist: [] };
@@ -44,7 +44,7 @@ const createDebugger = ({ resolveCyclic, actionsBlacklist }: Configuration = def
4444
},
4545
);
4646
},
47-
onDisconnect() {},
47+
onDisconnect() { },
4848
runInBackground() {
4949
return true;
5050
},

yarn.lock

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,10 @@
3232
version "7.0.4"
3333
resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.4.tgz#38fd73ddfd9b55abb1e1b2ed578cb55bd7b7d339"
3434

35-
"@types/node@^14.0.5":
36-
version "14.0.5"
37-
resolved "https://registry.yarnpkg.com/@types/node/-/node-14.0.5.tgz#3d03acd3b3414cf67faf999aed11682ed121f22b"
35+
"@types/node@^14.0.22":
36+
version "14.0.22"
37+
resolved "https://registry.yarnpkg.com/@types/node/-/node-14.0.22.tgz#23ea4d88189cec7d58f9e6b66f786b215eb61bdc"
38+
integrity sha512-emeGcJvdiZ4Z3ohbmw93E/64jRzUHAItSHt8nF7M4TGgQTiWqFVGB8KNpLGFmUHmHLvjvBgFwVlqNcq+VuGv9g==
3839

3940
"@typescript-eslint/eslint-plugin@^2.28.0":
4041
version "2.28.0"
@@ -234,9 +235,10 @@ cycle@^1.0.3:
234235
version "1.0.3"
235236
resolved "https://registry.yarnpkg.com/cycle/-/cycle-1.0.3.tgz#21e80b2be8580f98b468f379430662b046c34ad2"
236237

237-
dayjs@^1.8.24:
238-
version "1.8.24"
239-
resolved "https://registry.yarnpkg.com/dayjs/-/dayjs-1.8.24.tgz#2ef8a2ab9425eaf3318fe78825be1c571027488d"
238+
dayjs@^1.8.29:
239+
version "1.8.29"
240+
resolved "https://registry.yarnpkg.com/dayjs/-/dayjs-1.8.29.tgz#5d23e341de6bfbd206c01136d2fb0f01877820f5"
241+
integrity sha512-Vm6teig8ZWK7rH/lxzVGxZJCljPdmUr6q/3f4fr5F0VWNGVkZEjZOQJsAN8hUHUqn+NK4XHNEpJZS1MwLyDcLw==
240242

241243
debug@^2.6.9:
242244
version "2.6.9"
@@ -939,9 +941,10 @@ punycode@^2.1.0:
939941
version "2.1.1"
940942
resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec"
941943

942-
react-native-flipper@^0.37.0:
943-
version "0.37.0"
944-
resolved "https://registry.yarnpkg.com/react-native-flipper/-/react-native-flipper-0.37.0.tgz#15187696e7361553952a83c77dcf53e508261662"
944+
react-native-flipper@^0.49.0:
945+
version "0.49.0"
946+
resolved "https://registry.yarnpkg.com/react-native-flipper/-/react-native-flipper-0.49.0.tgz#8fd19b7cd8af1e7772ece07e54366aa751a87016"
947+
integrity sha512-Y0fIwEyEsouYKbyve71Ps7cUryDcEGLY2EOyve6p9gNMDdpVIfo040JgwCOD/2s+AjWK3C7F0wl4IXIrnF+wiA==
945948

946949
read-pkg-up@^2.0.0:
947950
version "2.0.0"

0 commit comments

Comments
 (0)