Skip to content

Commit f3d95d1

Browse files
committed
Removed some getters
user and filterKey removed. Project rebuilt.
1 parent 9d51da6 commit f3d95d1

File tree

6 files changed

+33
-141
lines changed

6 files changed

+33
-141
lines changed

dist/build.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@
1818
"babel-loader": "^7.1.2",
1919
"babel-plugin-transform-object-rest-spread": "^6.26.0",
2020
"babel-preset-env": "^1.6.1",
21-
"babel-preset-es2015": "^6.24.1",
22-
"babel-preset-stage-2": "^6.0.0",
2321
"cross-env": "^5.1.3",
2422
"css-loader": "^0.28.9",
2523
"file-loader": "^1.1.6",

src/components/card.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<script>
22
import _ from 'lodash';
3-
import {mapMutations, mapGetters} from 'vuex';
3+
import {mapMutations, mapState} from 'vuex';
44
55
export default {
66
// 使用对象展开运算符将 getter 混入 computed 对象中
7-
computed: mapGetters([
7+
computed: mapState([
88
'user',
99
'filterKey',
1010
]),

src/components/message.vue

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
11
<script>
2-
import {mapGetters} from 'vuex';
2+
import {mapGetters, mapState} from 'vuex';
33
44
export default {
5-
computed: mapGetters([
6-
'user',
7-
'session'
8-
]),
5+
computed: {
6+
...mapGetters([
7+
'session'
8+
]),
9+
...mapState([
10+
'user'
11+
])
12+
},
913
filters: {
1014
// 将日期过滤为 hour:minutes
1115
time(date) {

src/store.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,6 @@ const store = new Vuex.Store({
7373
}
7474
},
7575
getters: {
76-
user: ({user}) => user,
77-
filterKey: ({filterKey}) => filterKey,
7876
// 过滤后的会话列表
7977
sessions: ({sessions, filterKey}) => {
8078
let result = sessions.filter(session => session.user.name.includes(filterKey));

yarn.lock

Lines changed: 19 additions & 127 deletions
Original file line numberDiff line numberDiff line change
@@ -299,14 +299,6 @@ babel-generator@^6.26.0:
299299
source-map "^0.5.6"
300300
trim-right "^1.0.1"
301301

302-
babel-helper-bindify-decorators@^6.24.1:
303-
version "6.24.1"
304-
resolved "https://registry.yarnpkg.com/babel-helper-bindify-decorators/-/babel-helper-bindify-decorators-6.24.1.tgz#14c19e5f142d7b47f19a52431e52b1ccbc40a330"
305-
dependencies:
306-
babel-runtime "^6.22.0"
307-
babel-traverse "^6.24.1"
308-
babel-types "^6.24.1"
309-
310302
babel-helper-builder-binary-assignment-operator-visitor@^6.24.1:
311303
version "6.24.1"
312304
resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664"
@@ -341,15 +333,6 @@ babel-helper-explode-assignable-expression@^6.24.1:
341333
babel-traverse "^6.24.1"
342334
babel-types "^6.24.1"
343335

344-
babel-helper-explode-class@^6.24.1:
345-
version "6.24.1"
346-
resolved "https://registry.yarnpkg.com/babel-helper-explode-class/-/babel-helper-explode-class-6.24.1.tgz#7dc2a3910dee007056e1e31d640ced3d54eaa9eb"
347-
dependencies:
348-
babel-helper-bindify-decorators "^6.24.1"
349-
babel-runtime "^6.22.0"
350-
babel-traverse "^6.24.1"
351-
babel-types "^6.24.1"
352-
353336
babel-helper-function-name@^6.24.1:
354337
version "6.24.1"
355338
resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9"
@@ -441,22 +424,6 @@ babel-plugin-syntax-async-functions@^6.8.0:
441424
version "6.13.0"
442425
resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95"
443426

444-
babel-plugin-syntax-async-generators@^6.5.0:
445-
version "6.13.0"
446-
resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-generators/-/babel-plugin-syntax-async-generators-6.13.0.tgz#6bc963ebb16eccbae6b92b596eb7f35c342a8b9a"
447-
448-
babel-plugin-syntax-class-properties@^6.8.0:
449-
version "6.13.0"
450-
resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz#d7eb23b79a317f8543962c505b827c7d6cac27de"
451-
452-
babel-plugin-syntax-decorators@^6.13.0:
453-
version "6.13.0"
454-
resolved "https://registry.yarnpkg.com/babel-plugin-syntax-decorators/-/babel-plugin-syntax-decorators-6.13.0.tgz#312563b4dbde3cc806cee3e416cceeaddd11ac0b"
455-
456-
babel-plugin-syntax-dynamic-import@^6.18.0:
457-
version "6.18.0"
458-
resolved "https://registry.yarnpkg.com/babel-plugin-syntax-dynamic-import/-/babel-plugin-syntax-dynamic-import-6.18.0.tgz#8d6a26229c83745a9982a441051572caa179b1da"
459-
460427
babel-plugin-syntax-exponentiation-operator@^6.8.0:
461428
version "6.13.0"
462429
resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de"
@@ -469,41 +436,14 @@ babel-plugin-syntax-trailing-function-commas@^6.22.0:
469436
version "6.22.0"
470437
resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3"
471438

472-
babel-plugin-transform-async-generator-functions@^6.24.1:
473-
version "6.24.1"
474-
resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-generator-functions/-/babel-plugin-transform-async-generator-functions-6.24.1.tgz#f058900145fd3e9907a6ddf28da59f215258a5db"
475-
dependencies:
476-
babel-helper-remap-async-to-generator "^6.24.1"
477-
babel-plugin-syntax-async-generators "^6.5.0"
478-
babel-runtime "^6.22.0"
479-
480-
babel-plugin-transform-async-to-generator@^6.22.0, babel-plugin-transform-async-to-generator@^6.24.1:
439+
babel-plugin-transform-async-to-generator@^6.22.0:
481440
version "6.24.1"
482441
resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761"
483442
dependencies:
484443
babel-helper-remap-async-to-generator "^6.24.1"
485444
babel-plugin-syntax-async-functions "^6.8.0"
486445
babel-runtime "^6.22.0"
487446

488-
babel-plugin-transform-class-properties@^6.24.1:
489-
version "6.24.1"
490-
resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.24.1.tgz#6a79763ea61d33d36f37b611aa9def81a81b46ac"
491-
dependencies:
492-
babel-helper-function-name "^6.24.1"
493-
babel-plugin-syntax-class-properties "^6.8.0"
494-
babel-runtime "^6.22.0"
495-
babel-template "^6.24.1"
496-
497-
babel-plugin-transform-decorators@^6.24.1:
498-
version "6.24.1"
499-
resolved "https://registry.yarnpkg.com/babel-plugin-transform-decorators/-/babel-plugin-transform-decorators-6.24.1.tgz#788013d8f8c6b5222bdf7b344390dfd77569e24d"
500-
dependencies:
501-
babel-helper-explode-class "^6.24.1"
502-
babel-plugin-syntax-decorators "^6.13.0"
503-
babel-runtime "^6.22.0"
504-
babel-template "^6.24.1"
505-
babel-types "^6.24.1"
506-
507447
babel-plugin-transform-es2015-arrow-functions@^6.22.0:
508448
version "6.22.0"
509449
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221"
@@ -516,7 +456,7 @@ babel-plugin-transform-es2015-block-scoped-functions@^6.22.0:
516456
dependencies:
517457
babel-runtime "^6.22.0"
518458

519-
babel-plugin-transform-es2015-block-scoping@^6.23.0, babel-plugin-transform-es2015-block-scoping@^6.24.1:
459+
babel-plugin-transform-es2015-block-scoping@^6.23.0:
520460
version "6.26.0"
521461
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz#d70f5299c1308d05c12f463813b0a09e73b1895f"
522462
dependencies:
@@ -526,7 +466,7 @@ babel-plugin-transform-es2015-block-scoping@^6.23.0, babel-plugin-transform-es20
526466
babel-types "^6.26.0"
527467
lodash "^4.17.4"
528468

529-
babel-plugin-transform-es2015-classes@^6.23.0, babel-plugin-transform-es2015-classes@^6.24.1:
469+
babel-plugin-transform-es2015-classes@^6.23.0:
530470
version "6.24.1"
531471
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db"
532472
dependencies:
@@ -540,33 +480,33 @@ babel-plugin-transform-es2015-classes@^6.23.0, babel-plugin-transform-es2015-cla
540480
babel-traverse "^6.24.1"
541481
babel-types "^6.24.1"
542482

543-
babel-plugin-transform-es2015-computed-properties@^6.22.0, babel-plugin-transform-es2015-computed-properties@^6.24.1:
483+
babel-plugin-transform-es2015-computed-properties@^6.22.0:
544484
version "6.24.1"
545485
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3"
546486
dependencies:
547487
babel-runtime "^6.22.0"
548488
babel-template "^6.24.1"
549489

550-
babel-plugin-transform-es2015-destructuring@^6.22.0, babel-plugin-transform-es2015-destructuring@^6.23.0:
490+
babel-plugin-transform-es2015-destructuring@^6.23.0:
551491
version "6.23.0"
552492
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d"
553493
dependencies:
554494
babel-runtime "^6.22.0"
555495

556-
babel-plugin-transform-es2015-duplicate-keys@^6.22.0, babel-plugin-transform-es2015-duplicate-keys@^6.24.1:
496+
babel-plugin-transform-es2015-duplicate-keys@^6.22.0:
557497
version "6.24.1"
558498
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e"
559499
dependencies:
560500
babel-runtime "^6.22.0"
561501
babel-types "^6.24.1"
562502

563-
babel-plugin-transform-es2015-for-of@^6.22.0, babel-plugin-transform-es2015-for-of@^6.23.0:
503+
babel-plugin-transform-es2015-for-of@^6.23.0:
564504
version "6.23.0"
565505
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691"
566506
dependencies:
567507
babel-runtime "^6.22.0"
568508

569-
babel-plugin-transform-es2015-function-name@^6.22.0, babel-plugin-transform-es2015-function-name@^6.24.1:
509+
babel-plugin-transform-es2015-function-name@^6.22.0:
570510
version "6.24.1"
571511
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b"
572512
dependencies:
@@ -597,30 +537,30 @@ babel-plugin-transform-es2015-modules-commonjs@^6.23.0, babel-plugin-transform-e
597537
babel-template "^6.26.0"
598538
babel-types "^6.26.0"
599539

600-
babel-plugin-transform-es2015-modules-systemjs@^6.23.0, babel-plugin-transform-es2015-modules-systemjs@^6.24.1:
540+
babel-plugin-transform-es2015-modules-systemjs@^6.23.0:
601541
version "6.24.1"
602542
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23"
603543
dependencies:
604544
babel-helper-hoist-variables "^6.24.1"
605545
babel-runtime "^6.22.0"
606546
babel-template "^6.24.1"
607547

608-
babel-plugin-transform-es2015-modules-umd@^6.23.0, babel-plugin-transform-es2015-modules-umd@^6.24.1:
548+
babel-plugin-transform-es2015-modules-umd@^6.23.0:
609549
version "6.24.1"
610550
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468"
611551
dependencies:
612552
babel-plugin-transform-es2015-modules-amd "^6.24.1"
613553
babel-runtime "^6.22.0"
614554
babel-template "^6.24.1"
615555

616-
babel-plugin-transform-es2015-object-super@^6.22.0, babel-plugin-transform-es2015-object-super@^6.24.1:
556+
babel-plugin-transform-es2015-object-super@^6.22.0:
617557
version "6.24.1"
618558
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d"
619559
dependencies:
620560
babel-helper-replace-supers "^6.24.1"
621561
babel-runtime "^6.22.0"
622562

623-
babel-plugin-transform-es2015-parameters@^6.23.0, babel-plugin-transform-es2015-parameters@^6.24.1:
563+
babel-plugin-transform-es2015-parameters@^6.23.0:
624564
version "6.24.1"
625565
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b"
626566
dependencies:
@@ -631,7 +571,7 @@ babel-plugin-transform-es2015-parameters@^6.23.0, babel-plugin-transform-es2015-
631571
babel-traverse "^6.24.1"
632572
babel-types "^6.24.1"
633573

634-
babel-plugin-transform-es2015-shorthand-properties@^6.22.0, babel-plugin-transform-es2015-shorthand-properties@^6.24.1:
574+
babel-plugin-transform-es2015-shorthand-properties@^6.22.0:
635575
version "6.24.1"
636576
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0"
637577
dependencies:
@@ -644,7 +584,7 @@ babel-plugin-transform-es2015-spread@^6.22.0:
644584
dependencies:
645585
babel-runtime "^6.22.0"
646586

647-
babel-plugin-transform-es2015-sticky-regex@^6.22.0, babel-plugin-transform-es2015-sticky-regex@^6.24.1:
587+
babel-plugin-transform-es2015-sticky-regex@^6.22.0:
648588
version "6.24.1"
649589
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc"
650590
dependencies:
@@ -658,36 +598,36 @@ babel-plugin-transform-es2015-template-literals@^6.22.0:
658598
dependencies:
659599
babel-runtime "^6.22.0"
660600

661-
babel-plugin-transform-es2015-typeof-symbol@^6.22.0, babel-plugin-transform-es2015-typeof-symbol@^6.23.0:
601+
babel-plugin-transform-es2015-typeof-symbol@^6.23.0:
662602
version "6.23.0"
663603
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372"
664604
dependencies:
665605
babel-runtime "^6.22.0"
666606

667-
babel-plugin-transform-es2015-unicode-regex@^6.22.0, babel-plugin-transform-es2015-unicode-regex@^6.24.1:
607+
babel-plugin-transform-es2015-unicode-regex@^6.22.0:
668608
version "6.24.1"
669609
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9"
670610
dependencies:
671611
babel-helper-regex "^6.24.1"
672612
babel-runtime "^6.22.0"
673613
regexpu-core "^2.0.0"
674614

675-
babel-plugin-transform-exponentiation-operator@^6.22.0, babel-plugin-transform-exponentiation-operator@^6.24.1:
615+
babel-plugin-transform-exponentiation-operator@^6.22.0:
676616
version "6.24.1"
677617
resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e"
678618
dependencies:
679619
babel-helper-builder-binary-assignment-operator-visitor "^6.24.1"
680620
babel-plugin-syntax-exponentiation-operator "^6.8.0"
681621
babel-runtime "^6.22.0"
682622

683-
babel-plugin-transform-object-rest-spread@^6.22.0, babel-plugin-transform-object-rest-spread@^6.26.0:
623+
babel-plugin-transform-object-rest-spread@^6.26.0:
684624
version "6.26.0"
685625
resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz#0f36692d50fef6b7e2d4b3ac1478137a963b7b06"
686626
dependencies:
687627
babel-plugin-syntax-object-rest-spread "^6.8.0"
688628
babel-runtime "^6.26.0"
689629

690-
babel-plugin-transform-regenerator@^6.22.0, babel-plugin-transform-regenerator@^6.24.1:
630+
babel-plugin-transform-regenerator@^6.22.0:
691631
version "6.26.0"
692632
resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz#e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f"
693633
dependencies:
@@ -743,54 +683,6 @@ babel-preset-env@^1.6.1:
743683
invariant "^2.2.2"
744684
semver "^5.3.0"
745685

746-
babel-preset-es2015@^6.24.1:
747-
version "6.24.1"
748-
resolved "https://registry.yarnpkg.com/babel-preset-es2015/-/babel-preset-es2015-6.24.1.tgz#d44050d6bc2c9feea702aaf38d727a0210538939"
749-
dependencies:
750-
babel-plugin-check-es2015-constants "^6.22.0"
751-
babel-plugin-transform-es2015-arrow-functions "^6.22.0"
752-
babel-plugin-transform-es2015-block-scoped-functions "^6.22.0"
753-
babel-plugin-transform-es2015-block-scoping "^6.24.1"
754-
babel-plugin-transform-es2015-classes "^6.24.1"
755-
babel-plugin-transform-es2015-computed-properties "^6.24.1"
756-
babel-plugin-transform-es2015-destructuring "^6.22.0"
757-
babel-plugin-transform-es2015-duplicate-keys "^6.24.1"
758-
babel-plugin-transform-es2015-for-of "^6.22.0"
759-
babel-plugin-transform-es2015-function-name "^6.24.1"
760-
babel-plugin-transform-es2015-literals "^6.22.0"
761-
babel-plugin-transform-es2015-modules-amd "^6.24.1"
762-
babel-plugin-transform-es2015-modules-commonjs "^6.24.1"
763-
babel-plugin-transform-es2015-modules-systemjs "^6.24.1"
764-
babel-plugin-transform-es2015-modules-umd "^6.24.1"
765-
babel-plugin-transform-es2015-object-super "^6.24.1"
766-
babel-plugin-transform-es2015-parameters "^6.24.1"
767-
babel-plugin-transform-es2015-shorthand-properties "^6.24.1"
768-
babel-plugin-transform-es2015-spread "^6.22.0"
769-
babel-plugin-transform-es2015-sticky-regex "^6.24.1"
770-
babel-plugin-transform-es2015-template-literals "^6.22.0"
771-
babel-plugin-transform-es2015-typeof-symbol "^6.22.0"
772-
babel-plugin-transform-es2015-unicode-regex "^6.24.1"
773-
babel-plugin-transform-regenerator "^6.24.1"
774-
775-
babel-preset-stage-2@^6.0.0:
776-
version "6.24.1"
777-
resolved "https://registry.yarnpkg.com/babel-preset-stage-2/-/babel-preset-stage-2-6.24.1.tgz#d9e2960fb3d71187f0e64eec62bc07767219bdc1"
778-
dependencies:
779-
babel-plugin-syntax-dynamic-import "^6.18.0"
780-
babel-plugin-transform-class-properties "^6.24.1"
781-
babel-plugin-transform-decorators "^6.24.1"
782-
babel-preset-stage-3 "^6.24.1"
783-
784-
babel-preset-stage-3@^6.24.1:
785-
version "6.24.1"
786-
resolved "https://registry.yarnpkg.com/babel-preset-stage-3/-/babel-preset-stage-3-6.24.1.tgz#836ada0a9e7a7fa37cb138fb9326f87934a48395"
787-
dependencies:
788-
babel-plugin-syntax-trailing-function-commas "^6.22.0"
789-
babel-plugin-transform-async-generator-functions "^6.24.1"
790-
babel-plugin-transform-async-to-generator "^6.24.1"
791-
babel-plugin-transform-exponentiation-operator "^6.24.1"
792-
babel-plugin-transform-object-rest-spread "^6.22.0"
793-
794686
babel-register@^6.26.0:
795687
version "6.26.0"
796688
resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071"

0 commit comments

Comments
 (0)