Skip to content

Commit 6dc7c8e

Browse files
committed
fix(ts): types
1 parent 31fcf3a commit 6dc7c8e

File tree

6 files changed

+120
-26
lines changed

6 files changed

+120
-26
lines changed

packages/vue-apollo/package.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,16 +47,14 @@
4747
"throttle-debounce": "^2.1.0"
4848
},
4949
"devDependencies": {
50+
"@apollo/client": "^3.2.1",
5051
"@babel/core": "^7.1.2",
5152
"@babel/plugin-proposal-class-properties": "^7.1.0",
5253
"@babel/plugin-transform-for-of": "^7.4.4",
5354
"@babel/preset-env": "^7.1.0",
5455
"@types/graphql": "^14.0.1",
5556
"@vue/test-utils": "^1.0.0-beta.25",
5657
"apollo-cache-inmemory": "^1.2.9",
57-
"apollo-client": "^2.4.1",
58-
"apollo-link": "^1.0.3",
59-
"apollo-link-http": "^1.2.0",
6058
"babel-core": "^7.0.0-bridge.0",
6159
"babel-eslint": "^10.0.1",
6260
"cross-env": "^6.0.0",

packages/vue-apollo/types/options.d.ts

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,13 @@
1-
import Vue from 'vue'
21
import {
32
WatchQueryOptions,
43
OperationVariables,
5-
MutationOptions,
64
SubscriptionOptions,
75
SubscribeToMoreOptions,
8-
ObservableQuery,
9-
NetworkStatus,
106
ApolloQueryResult,
117
ApolloError
128
} from 'apollo-client'
13-
import { FetchResult } from 'apollo-link'
14-
import { ServerError, ServerParseError } from 'apollo-link-http-common'
15-
import { DocumentNode, GraphQLError } from 'graphql'
16-
import { DeepApplyThisType } from './utils'
9+
import { DocumentNode } from 'graphql'
10+
// import { DeepApplyThisType } from './utils'
1711

1812
/* Component options */
1913

packages/vue-apollo/types/test/App.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -394,7 +394,7 @@ export default Vue.extend({
394394
},
395395
})
396396
observer.subscribe({
397-
next(data) {
397+
next(data: any) {
398398
console.log('this.$apollo.subscribe', data)
399399
},
400400
})

packages/vue-apollo/types/test/tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@
2121
"experimentalDecorators": true,
2222
"strict": true,
2323
"noImplicitAny": true,
24-
"allowJs": true
24+
"allowJs": true,
25+
"allowSyntheticDefaultImports": true
2526
},
2627
"include": [
2728
"*.ts",

packages/vue-apollo/types/vue-apollo.d.ts

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,12 @@ import {
1010
OperationVariables,
1111
} from 'apollo-client'
1212
import { FetchResult } from 'apollo-link'
13-
import { Observable } from 'apollo-client/util/Observable'
14-
import { ApolloProvider, VueApolloComponent } from './apollo-provider'
13+
import Observable from 'zen-observable'
14+
import { ApolloProvider } from './apollo-provider'
1515
import {
1616
VueApolloQueryDefinition,
1717
VueApolloSubscriptionDefinition,
18-
WatchLoading,
19-
ErrorHandler,
2018
} from './options'
21-
import { GraphQLError } from 'graphql'
2219

2320
export class VueApollo extends ApolloProvider implements PluginObject<{}>{
2421
[key: string]: any
@@ -76,6 +73,6 @@ export interface DollarApollo<V> extends ApolloClientMethods {
7673

7774
getClient<R = any>(): ApolloClient<R>
7875

79-
addSmartQuery<R = any>(key: string, options: VueApolloQueryDefinition<R>): SmartQuery<V>
80-
addSmartSubscription<R = any>(key: string, options: VueApolloSubscriptionDefinition): SmartSubscription<V>
76+
addSmartQuery<R = any, Variables = OperationVariables>(key: string, options: VueApolloQueryDefinition<R, Variables>): SmartQuery<V>
77+
addSmartSubscription<Variables = OperationVariables>(key: string, options: VueApolloSubscriptionDefinition<Variables>): SmartSubscription<V>
8178
}

yarn.lock

Lines changed: 110 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,26 @@
2929
webpack-node-externals "^1.7.2"
3030
webpackbar "^4.0.0"
3131

32+
"@apollo/client@^3.2.1":
33+
version "3.2.4"
34+
resolved "https://registry.yarnpkg.com/@apollo/client/-/client-3.2.4.tgz#d9a308a900bd9e7053348367f66f3962804ed385"
35+
integrity sha512-lfsxKINoc11+g4NQFyKFuxszc/GlecHrxkJYvx/oWkdpscSU5bm/c+BwI/yvk1/E3yfbR7Afi9XIYrt212xrtA==
36+
dependencies:
37+
"@graphql-typed-document-node/core" "^3.0.0"
38+
"@types/zen-observable" "^0.8.0"
39+
"@wry/context" "^0.5.2"
40+
"@wry/equality" "^0.2.0"
41+
fast-json-stable-stringify "^2.0.0"
42+
graphql-tag "^2.11.0"
43+
hoist-non-react-statics "^3.3.2"
44+
optimism "^0.13.0"
45+
prop-types "^15.7.2"
46+
symbol-observable "^2.0.0"
47+
terser "^5.2.0"
48+
ts-invariant "^0.4.4"
49+
tslib "^1.10.0"
50+
zen-observable "^0.8.14"
51+
3252
3353
version "0.10.2"
3454
resolved "https://registry.yarnpkg.com/@apollo/federation/-/federation-0.10.2.tgz#6ead14e9d25b7a87d85fc0188fd5ec7fd63592fe"
@@ -981,6 +1001,11 @@
9811001
unique-filename "^1.1.1"
9821002
which "^1.3.1"
9831003

1004+
"@graphql-typed-document-node/core@^3.0.0":
1005+
version "3.1.0"
1006+
resolved "https://registry.yarnpkg.com/@graphql-typed-document-node/core/-/core-3.1.0.tgz#0eee6373e11418bfe0b5638f654df7a4ca6a3950"
1007+
integrity sha512-wYn6r8zVZyQJ6rQaALBEln5B1pzxb9shV5Ef97kTvn6yVGrqyXVnDqnU24MXnFubR+rZjBY9NWuxX3FB2sTsjg==
1008+
9841009
9851010
version "2.1.2"
9861011
resolved "https://registry.yarnpkg.com/@hapi/address/-/address-2.1.2.tgz#1c794cd6dbf2354d1eb1ef10e0303f573e1c7222"
@@ -2969,13 +2994,27 @@
29692994
"@types/node" ">=6"
29702995
tslib "^1.9.3"
29712996

2997+
"@wry/context@^0.5.2":
2998+
version "0.5.2"
2999+
resolved "https://registry.yarnpkg.com/@wry/context/-/context-0.5.2.tgz#f2a5d5ab9227343aa74c81e06533c1ef84598ec7"
3000+
integrity sha512-B/JLuRZ/vbEKHRUiGj6xiMojST1kHhu4WcreLfNN7q9DqQFrb97cWgf/kiYsPSUCAMVN0HzfFc8XjJdzgZzfjw==
3001+
dependencies:
3002+
tslib "^1.9.3"
3003+
29723004
"@wry/equality@^0.1.2":
29733005
version "0.1.9"
29743006
resolved "https://registry.yarnpkg.com/@wry/equality/-/equality-0.1.9.tgz#b13e18b7a8053c6858aa6c85b54911fb31e3a909"
29753007
integrity sha512-mB6ceGjpMGz1ZTza8HYnrPGos2mC6So4NhS1PtZ8s4Qt0K7fBiIGhpSxUbQmhwcSWE3no+bYxmI2OL6KuXYmoQ==
29763008
dependencies:
29773009
tslib "^1.9.3"
29783010

3011+
"@wry/equality@^0.2.0":
3012+
version "0.2.0"
3013+
resolved "https://registry.yarnpkg.com/@wry/equality/-/equality-0.2.0.tgz#a312d1b6a682d0909904c2bcd355b02303104fb7"
3014+
integrity sha512-Y4d+WH6hs+KZJUC8YKLYGarjGekBrhslDbf/R20oV+AakHPINSitHfDRQz3EGcEWc1luXYNUvMhawWtZVWNGvQ==
3015+
dependencies:
3016+
tslib "^1.9.3"
3017+
29793018
"@xtuc/ieee754@^1.2.0":
29803019
version "1.2.0"
29813020
resolved "https://registry.yarnpkg.com/@xtuc/ieee754/-/ieee754-1.2.0.tgz#eef014a3145ae477a1cbc00cd1e552336dceb790"
@@ -3290,7 +3329,7 @@ [email protected], apollo-cache@^1.3.2:
32903329
apollo-utilities "^1.3.2"
32913330
tslib "^1.9.3"
32923331

3293-
apollo-client@^2.4.1, apollo-client@^2.6.4:
3332+
apollo-client@^2.6.4:
32943333
version "2.6.4"
32953334
resolved "https://registry.yarnpkg.com/apollo-client/-/apollo-client-2.6.4.tgz#872c32927263a0d34655c5ef8a8949fbb20b6140"
32963335
integrity sha512-oWOwEOxQ9neHHVZrQhHDbI6bIibp9SHgxaLRVPoGvOFy7OH5XUykZE7hBQAVxq99tQjBzgytaZffQkeWo1B4VQ==
@@ -3468,7 +3507,7 @@ apollo-link-http-common@^0.2.14, apollo-link-http-common@^0.2.15:
34683507
ts-invariant "^0.4.0"
34693508
tslib "^1.9.3"
34703509

3471-
apollo-link-http@^1.2.0, apollo-link-http@^1.5.16, apollo-link-http@^1.5.5:
3510+
apollo-link-http@^1.5.16, apollo-link-http@^1.5.5:
34723511
version "1.5.16"
34733512
resolved "https://registry.yarnpkg.com/apollo-link-http/-/apollo-link-http-1.5.16.tgz#44fe760bcc2803b8a7f57fc9269173afb00f3814"
34743513
integrity sha512-IA3xA/OcrOzINRZEECI6IdhRp/Twom5X5L9jMehfzEo2AXdeRwAMlH5LuvTZHgKD8V1MBnXdM6YXawXkTDSmJw==
@@ -3501,7 +3540,7 @@ apollo-link-ws@^1.0.19:
35013540
apollo-link "^1.2.13"
35023541
tslib "^1.9.3"
35033542

3504-
apollo-link@^1.0.0, apollo-link@^1.0.3, apollo-link@^1.2.1, apollo-link@^1.2.12, apollo-link@^1.2.13, apollo-link@^1.2.3:
3543+
apollo-link@^1.0.0, apollo-link@^1.2.1, apollo-link@^1.2.12, apollo-link@^1.2.13, apollo-link@^1.2.3:
35053544
version "1.2.13"
35063545
resolved "https://registry.yarnpkg.com/apollo-link/-/apollo-link-1.2.13.tgz#dff00fbf19dfcd90fddbc14b6a3f9a771acac6c4"
35073546
integrity sha512-+iBMcYeevMm1JpYgwDEIDt/y0BB7VWyvlm/7x+TIPNLHCTCMgcEgDuW5kH86iQZWo0I7mNwQiTOz+/3ShPFmBw==
@@ -7827,6 +7866,11 @@ [email protected], graphql-tag@^2.10.1, graphql-tag@^2.5.0, graphql-tag@^2.9.0,
78277866
resolved "https://registry.yarnpkg.com/graphql-tag/-/graphql-tag-2.10.1.tgz#10aa41f1cd8fae5373eaf11f1f67260a3cad5e02"
78287867
integrity sha512-jApXqWBzNXQ8jYa/HLkZJaVw9jgwNqZkywa2zfFn16Iv1Zb7ELNHkJaXHR7Quvd5SIGsy6Ny7SUKATgnu05uEg==
78297868

7869+
graphql-tag@^2.11.0:
7870+
version "2.11.0"
7871+
resolved "https://registry.yarnpkg.com/graphql-tag/-/graphql-tag-2.11.0.tgz#1deb53a01c46a7eb401d6cb59dec86fa1cccbffd"
7872+
integrity sha512-VmsD5pJqWJnQZMUeRwrDhfgoyqcfwEkvtpANqcoUG8/tOLkwNgU9mzub/Mc78OJMhHjx7gfAMTxzdG43VGg3bA==
7873+
78307874
graphql-tools@^4.0.0, graphql-tools@^4.0.5:
78317875
version "4.0.6"
78327876
resolved "https://registry.yarnpkg.com/graphql-tools/-/graphql-tools-4.0.6.tgz#0e729e73db05ade3df10a2f92511be544972a844"
@@ -8053,6 +8097,13 @@ hogan.js@^3.0.2:
80538097
mkdirp "0.3.0"
80548098
nopt "1.0.10"
80558099

8100+
hoist-non-react-statics@^3.3.2:
8101+
version "3.3.2"
8102+
resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz#ece0acaf71d62c2969c2ec59feff42a4b1a85b45"
8103+
integrity sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==
8104+
dependencies:
8105+
react-is "^16.7.0"
8106+
80568107
hoopy@^0.1.4:
80578108
version "0.1.4"
80588109
resolved "https://registry.yarnpkg.com/hoopy/-/hoopy-0.1.4.tgz#609207d661100033a9a9402ad3dea677381c1b1d"
@@ -10025,7 +10076,7 @@ long@^4.0.0:
1002510076
resolved "https://registry.yarnpkg.com/long/-/long-4.0.0.tgz#9a7b71cfb7d361a194ea555241c92f7468d5bf28"
1002610077
integrity sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA==
1002710078

10028-
loose-envify@^1.0.0:
10079+
loose-envify@^1.0.0, loose-envify@^1.4.0:
1002910080
version "1.4.0"
1003010081
resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf"
1003110082
integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==
@@ -11188,6 +11239,13 @@ optimism@^0.10.0:
1118811239
dependencies:
1118911240
"@wry/context" "^0.4.0"
1119011241

11242+
optimism@^0.13.0:
11243+
version "0.13.0"
11244+
resolved "https://registry.yarnpkg.com/optimism/-/optimism-0.13.0.tgz#c08904e1439a0eb9e7f86183dafa06cc715ff351"
11245+
integrity sha512-6JAh3dH+YUE4QUdsgUw8nUQyrNeBKfAEKOHMlLkQ168KhIYFIxzPsHakWrRXDnTO+x61RJrS3/2uEt6W0xlocA==
11246+
dependencies:
11247+
"@wry/context" "^0.5.2"
11248+
1119111249
optimist@^0.6.1:
1119211250
version "0.6.1"
1119311251
resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686"
@@ -12221,6 +12279,15 @@ promzard@^0.3.0:
1222112279
dependencies:
1222212280
read "1"
1222312281

12282+
prop-types@^15.7.2:
12283+
version "15.7.2"
12284+
resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.7.2.tgz#52c41e75b8c87e72b9d9360e0206b99dcbffa6c5"
12285+
integrity sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ==
12286+
dependencies:
12287+
loose-envify "^1.4.0"
12288+
object-assign "^4.1.1"
12289+
react-is "^16.8.1"
12290+
1222412291
proto-list@~1.2.1:
1222512292
version "1.2.4"
1222612293
resolved "https://registry.yarnpkg.com/proto-list/-/proto-list-1.2.4.tgz#212d5bfe1318306a420f6402b8e26ff39647a849"
@@ -12441,6 +12508,11 @@ rc@^1.0.1, rc@^1.1.6, rc@^1.2.7:
1244112508
minimist "^1.2.0"
1244212509
strip-json-comments "~2.0.1"
1244312510

12511+
react-is@^16.7.0, react-is@^16.8.1:
12512+
version "16.13.1"
12513+
resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4"
12514+
integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==
12515+
1244412516
react-is@^16.8.4:
1244512517
version "16.11.0"
1244612518
resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.11.0.tgz#b85dfecd48ad1ce469ff558a882ca8e8313928fa"
@@ -13560,6 +13632,14 @@ source-map-support@^0.5.6, source-map-support@~0.5.12:
1356013632
buffer-from "^1.0.0"
1356113633
source-map "^0.6.0"
1356213634

13635+
source-map-support@~0.5.19:
13636+
version "0.5.19"
13637+
resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.19.tgz#a98b62f86dcaf4f67399648c085291ab9e8fed61"
13638+
integrity sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==
13639+
dependencies:
13640+
buffer-from "^1.0.0"
13641+
source-map "^0.6.0"
13642+
1356313643
source-map-url@^0.4.0:
1356413644
version "0.4.0"
1356513645
resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3"
@@ -13580,7 +13660,7 @@ source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.0, source-map@~0.6.1:
1358013660
resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263"
1358113661
integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==
1358213662

13583-
source-map@^0.7.3:
13663+
source-map@^0.7.3, source-map@~0.7.2:
1358413664
version "0.7.3"
1358513665
resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.3.tgz#5302f8169031735226544092e64981f751750383"
1358613666
integrity sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==
@@ -14129,6 +14209,11 @@ symbol-observable@^1.0.2, symbol-observable@^1.0.4, symbol-observable@^1.1.0:
1412914209
resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.2.0.tgz#c22688aed4eab3cdc2dfeacbb561660560a00804"
1413014210
integrity sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ==
1413114211

14212+
symbol-observable@^2.0.0:
14213+
version "2.0.3"
14214+
resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-2.0.3.tgz#5b521d3d07a43c351055fa43b8355b62d33fd16a"
14215+
integrity sha512-sQV7phh2WCYAn81oAkakC5qjq2Ml0g8ozqz03wOGnx9dDlG1de6yrF+0RAzSJD8fPUow3PTSMf2SAbOGxb93BA==
14216+
1413214217
symbol-tree@^3.2.2:
1413314218
version "3.2.4"
1413414219
resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.4.tgz#430637d248ba77e078883951fb9aa0eed7c63fa2"
@@ -14236,6 +14321,15 @@ terser@^4.1.2, terser@^4.3.9:
1423614321
source-map "~0.6.1"
1423714322
source-map-support "~0.5.12"
1423814323

14324+
terser@^5.2.0:
14325+
version "5.3.5"
14326+
resolved "https://registry.yarnpkg.com/terser/-/terser-5.3.5.tgz#9e080baa0568f96654621b20eb9effa440b1484e"
14327+
integrity sha512-Qw3CZAMmmfU824AoGKalx+riwocSI5Cs0PoGp9RdSLfmxkmJgyBxqLBP/isDNtFyhHnitikvRMZzyVgeq+U+Tg==
14328+
dependencies:
14329+
commander "^2.20.0"
14330+
source-map "~0.7.2"
14331+
source-map-support "~0.5.19"
14332+
1423914333
test-exclude@^5.2.3:
1424014334
version "5.2.3"
1424114335
resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-5.2.3.tgz#c3d3e1e311eb7ee405e092dac10aefd09091eac0"
@@ -14485,7 +14579,7 @@ ts-invariant@^0.3.2:
1448514579
dependencies:
1448614580
tslib "^1.9.3"
1448714581

14488-
ts-invariant@^0.4.0:
14582+
ts-invariant@^0.4.0, ts-invariant@^0.4.4:
1448914583
version "0.4.4"
1449014584
resolved "https://registry.yarnpkg.com/ts-invariant/-/ts-invariant-0.4.4.tgz#97a523518688f93aafad01b0e80eb803eb2abd86"
1449114585
integrity sha512-uEtWkFM/sdZvRNNDL3Ehu4WVpwaulhwQszV8mrtcdeE8nN00BV9mAmQ88RkrBhFgl9gMgvjJLAQcZbnPXI9mlA==
@@ -14508,6 +14602,11 @@ tslib@^1, tslib@^1.9.0, tslib@^1.9.3:
1450814602
resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.10.0.tgz#c3c19f95973fb0a62973fb09d90d961ee43e5c8a"
1450914603
integrity sha512-qOebF53frne81cf0S9B41ByenJ3/IuH8yJKngAX35CmiZySA0khhkovshKK+jGCaMnVomla7gVlIcc3EvKPbTQ==
1451014604

14605+
tslib@^1.10.0:
14606+
version "1.14.1"
14607+
resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00"
14608+
integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==
14609+
1451114610
1451214611
version "0.0.0"
1451314612
resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6"
@@ -15867,6 +15966,11 @@ zen-observable@^0.8.0:
1586715966
resolved "https://registry.yarnpkg.com/zen-observable/-/zen-observable-0.8.14.tgz#d33058359d335bc0db1f0af66158b32872af3bf7"
1586815967
integrity sha512-kQz39uonEjEESwh+qCi83kcC3rZJGh4mrZW7xjkSQYXkq//JZHTtKo+6yuVloTgMtzsIWOJrjIrKvk/dqm0L5g==
1586915968

15969+
zen-observable@^0.8.14:
15970+
version "0.8.15"
15971+
resolved "https://registry.yarnpkg.com/zen-observable/-/zen-observable-0.8.15.tgz#96415c512d8e3ffd920afd3889604e30b9eaac15"
15972+
integrity sha512-PQ2PC7R9rslx84ndNBZB/Dkv8V8fZEpk83RLgXtYd0fwUgEjseMn1Dgajh2x6S8QbZAFa9p2qVCEuYZNgve0dQ==
15973+
1587015974
zepto@^1.2.0:
1587115975
version "1.2.0"
1587215976
resolved "https://registry.yarnpkg.com/zepto/-/zepto-1.2.0.tgz#e127bd9e66fd846be5eab48c1394882f7c0e4f98"

0 commit comments

Comments
 (0)